From ed214cac32d9edfe602a3f40f093d3109f3655f0 Mon Sep 17 00:00:00 2001
From: DisabledAbel <196466003+DisabledAbel@users.noreply.github.com>
Date: Fri, 12 Jun 2026 17:39:55 +0000
Subject: [PATCH 1/3] =?UTF-8?q?=F0=9F=93=85=20Expand=20sports=20data=20wit?=
=?UTF-8?q?h=20ESPN=20scraping=20and=20SportsDataverse?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- Automate ESPN schedule scraping every 6 hours via Firecrawl
- Integrate SportsDataverse CSVs for NBA, NFL, NHL, and WNBA
- Implement robust character-based CSV parser for external datasets
- Add tolerant team matching (abbreviations, prefix, case-insensitive)
- Normalize all supplemental times to HH:mm:ss with 'Z' designator
- Update GitHub Actions workflow to run every 6 hours
- Synchronize internal cache staleness check with 6-hour workflow
- Ensure deterministic merging tests with mock timers
---
.github/workflows/fetch-sports.yml | 6 +-
lib/sports.js | 179 +++++++++++++++-
scripts/fetch-sports.js | 326 ++++++++++++++++++++++++++++-
test/sports.test.js | 46 ++++
4 files changed, 552 insertions(+), 5 deletions(-)
diff --git a/.github/workflows/fetch-sports.yml b/.github/workflows/fetch-sports.yml
index 7ff6e50..57df68b 100644
--- a/.github/workflows/fetch-sports.yml
+++ b/.github/workflows/fetch-sports.yml
@@ -2,7 +2,7 @@ name: Fetch Sports Schedules
on:
schedule:
- - cron: '0 */12 * * *' # Every 12 hours
+ - cron: '0 */6 * * *' # Every 6 hours
workflow_dispatch:
concurrency:
@@ -32,8 +32,8 @@ jobs:
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
- if ls lib/data/sports/*.json >/dev/null 2>&1; then
- git add lib/data/sports/*.json
+ if ls lib/data/sports/*.json >/dev/null 2>&1 || ls lib/data/sports/supplemental/*.json >/dev/null 2>&1; then
+ git add lib/data/sports/*.json lib/data/sports/supplemental/*.json 2>/dev/null || true
git commit -m "📅 Update sports schedules" || echo "No changes to commit"
git push --force-with-lease
else
diff --git a/lib/sports.js b/lib/sports.js
index b87c15e..1f8df82 100644
--- a/lib/sports.js
+++ b/lib/sports.js
@@ -5,10 +5,35 @@ import { parseApiTimestamp, formatTimeForTimezone } from './utils/date.js';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const DATA_DIR = path.join(__dirname, 'data/sports');
+const SUPPLEMENTAL_DATA_DIR = path.join(DATA_DIR, 'supplemental');
const SPORTSDB_BASE_URL = 'https://www.thesportsdb.com/api/v1/json/3';
+const FIRECRAWL_SCRAPE_URL = 'https://api.firecrawl.dev/v2/scrape';
const FEED_REFRESH_INTERVAL = 'PT24H';
const MAX_SUGGESTIONS = 8;
+const SPORTS_EXTRACT_SCHEMA = {
+ type: 'object',
+ properties: {
+ games: {
+ type: 'array',
+ items: {
+ type: 'object',
+ properties: {
+ date: { type: 'string', description: 'The date of the game, preferably in YYYY-MM-DD format' },
+ time: { type: 'string', description: 'The time of the game, preferably in HH:mm format' },
+ name: { type: 'string', description: 'The full name of the event (e.g. Team A vs Team B)' },
+ homeTeam: { type: 'string', description: 'The name of the home team' },
+ awayTeam: { type: 'string', description: 'The name of the away team' },
+ venue: { type: 'string', description: 'The name of the stadium or venue' },
+ league: { type: 'string', description: 'The name of the league or competition' }
+ },
+ required: ['date', 'name']
+ }
+ }
+ },
+ required: ['games']
+};
+
async function fetchJson(url, fetchImpl) {
const response = await fetchImpl(url, {
headers: {
@@ -63,6 +88,141 @@ function normalizeEvent(event) {
};
}
+export function normalizeScrapedEvent(game, teamName) {
+ // Generate a stable ID based on date and name if missing
+ const id = `scraped-${game.date}-${game.name}`.toLowerCase().replace(/[^a-z0-9]/g, '-');
+
+ // Normalize time to HH:mm:ss
+ let normalizedTime = '00:00:00';
+ if (game.time) {
+ if (/^\d{2}:\d{2}:\d{2}$/.test(game.time)) {
+ normalizedTime = game.time;
+ } else if (/^\d{2}:\d{2}$/.test(game.time)) {
+ normalizedTime = `${game.time}:00`;
+ }
+ }
+
+ // Attempt to construct a timestamp if date and time are present
+ let timestamp = null;
+ if (game.date && /^\d{4}-\d{2}-\d{2}$/.test(game.date)) {
+ timestamp = `${game.date}T${normalizedTime}Z`;
+ }
+
+ return {
+ idEvent: id,
+ strEvent: game.name,
+ strHomeTeam: game.homeTeam || (game.name.toLowerCase().startsWith(teamName.toLowerCase()) ? teamName : null),
+ strAwayTeam: game.awayTeam || (game.name.toLowerCase().endsWith(teamName.toLowerCase()) ? teamName : null),
+ dateEvent: game.date,
+ strTime: normalizedTime,
+ strTimestamp: timestamp,
+ strLeague: game.league || null,
+ strVenue: game.venue || null,
+ strStatus: 'NS',
+ source: 'scraped'
+ };
+}
+
+export async function fetchScheduleFromWebsite(websiteUrl, { env = process.env, fetchImpl = globalThis.fetch } = {}) {
+ if (!env.FIRECRAWL_API_KEY) {
+ throw new Error('FIRECRAWL_API_KEY is required for scraping.');
+ }
+
+ const url = websiteUrl.startsWith('http') ? websiteUrl : `https://${websiteUrl}`;
+ const controller = new AbortController();
+ const timeoutMs = parseInt(env.FIRECRAWL_TIMEOUT_MS, 10) || 10000;
+ const timeout = setTimeout(() => controller.abort(), timeoutMs);
+
+ try {
+ const response = await fetchImpl(env.FIRECRAWL_API_URL || FIRECRAWL_SCRAPE_URL, {
+ method: 'POST',
+ signal: controller.signal,
+ headers: {
+ Accept: 'application/json',
+ Authorization: `Bearer ${env.FIRECRAWL_API_KEY}`,
+ 'Content-Type': 'application/json',
+ 'User-Agent': 'MakeICS-Sports-Schedules/1.0'
+ },
+ body: JSON.stringify({
+ url,
+ formats: ['extract'],
+ extract: {
+ schema: SPORTS_EXTRACT_SCHEMA,
+ prompt: 'Extract the upcoming games schedule. Include up to 200 games if available. Focus on game date, time, opponent, and venue.'
+ },
+ onlyMainContent: true,
+ maxAge: 86_400_000
+ })
+ });
+
+ if (!response.ok) {
+ throw new Error(`Firecrawl returned HTTP ${response.status}`);
+ }
+
+ const payload = await response.json();
+ const games = payload?.data?.extract?.games || payload?.extract?.games || [];
+
+ return games;
+ } catch (error) {
+ if (error.name === 'AbortError') {
+ throw new Error(`Firecrawl request timed out after ${timeoutMs}ms`);
+ }
+ throw error;
+ } finally {
+ clearTimeout(timeout);
+ }
+}
+
+export async function fetchScheduleFromESPN(leagueSlug, teamSlug, { env = process.env, fetchImpl = globalThis.fetch } = {}) {
+ if (!env.FIRECRAWL_API_KEY) {
+ throw new Error('FIRECRAWL_API_KEY is required for ESPN scraping.');
+ }
+
+ const url = `https://www.espn.com/${leagueSlug}/team/schedule/_/name/${teamSlug}`;
+ const controller = new AbortController();
+ const timeoutMs = parseInt(env.FIRECRAWL_TIMEOUT_MS, 10) || 15000; // ESPN pages might be heavier
+ const timeout = setTimeout(() => controller.abort(), timeoutMs);
+
+ try {
+ const response = await fetchImpl(env.FIRECRAWL_API_URL || FIRECRAWL_SCRAPE_URL, {
+ method: 'POST',
+ signal: controller.signal,
+ headers: {
+ Accept: 'application/json',
+ Authorization: `Bearer ${env.FIRECRAWL_API_KEY}`,
+ 'Content-Type': 'application/json',
+ 'User-Agent': 'MakeICS-Sports-Schedules/1.0'
+ },
+ body: JSON.stringify({
+ url,
+ formats: ['extract'],
+ extract: {
+ schema: SPORTS_EXTRACT_SCHEMA,
+ prompt: 'Extract the full upcoming season schedule for this team. Include every game up to 200. Focus on date, time, opponent, and venue.'
+ },
+ onlyMainContent: true,
+ maxAge: 21600000 // 6 hours in ms
+ })
+ });
+
+ if (!response.ok) {
+ throw new Error(`Firecrawl returned HTTP ${response.status} for ESPN scrape`);
+ }
+
+ const payload = await response.json();
+ const games = payload?.data?.extract?.games || payload?.extract?.games || [];
+
+ return games;
+ } catch (error) {
+ if (error.name === 'AbortError') {
+ throw new Error(`ESPN scrape request timed out after ${timeoutMs}ms`);
+ }
+ throw error;
+ } finally {
+ clearTimeout(timeout);
+ }
+}
+
async function loadCachedLeagueEvents(leagueId) {
try {
const filePath = path.join(DATA_DIR, `${leagueId}.json`);
@@ -75,6 +235,17 @@ async function loadCachedLeagueEvents(leagueId) {
}
}
+async function loadSupplementalTeamEvents(teamId) {
+ try {
+ const filePath = path.join(SUPPLEMENTAL_DATA_DIR, `${teamId}.json`);
+ const content = await fs.readFile(filePath, 'utf8');
+ const data = JSON.parse(content);
+ return data.events || [];
+ } catch (error) {
+ return [];
+ }
+}
+
export async function getUpcomingEvents({ teamId, fetchImpl = globalThis.fetch } = {}) {
if (!teamId) {
throw new Error('A team ID is required.');
@@ -129,7 +300,13 @@ export async function getUpcomingEvents({ teamId, fetchImpl = globalThis.fetch }
return [];
});
- const allEventsResults = await Promise.all([...leagueSeasonPromises, nextEventsPromise]);
+ const supplementalEventsPromise = loadSupplementalTeamEvents(teamId);
+
+ const allEventsResults = await Promise.all([
+ ...leagueSeasonPromises,
+ nextEventsPromise,
+ supplementalEventsPromise
+ ]);
const flatEvents = allEventsResults.flat();
// Deduplicate by idEvent
diff --git a/scripts/fetch-sports.js b/scripts/fetch-sports.js
index 30678cb..0637029 100644
--- a/scripts/fetch-sports.js
+++ b/scripts/fetch-sports.js
@@ -1,14 +1,85 @@
import fs from 'node:fs/promises';
import path from 'node:path';
import { fileURLToPath } from 'node:url';
+import { fetchScheduleFromWebsite, fetchScheduleFromESPN, normalizeScrapedEvent } from '../lib/sports.js';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
const DATA_DIR = path.join(__dirname, '../lib/data/sports');
+const SUPPLEMENTAL_DATA_DIR = path.join(DATA_DIR, 'supplemental');
const SPORTSDB_BASE_URL = 'https://www.thesportsdb.com/api/v1/json/3';
const FETCH_TIMEOUT_MS = 15000;
const MAX_RETRIES = 5;
const INITIAL_BACKOFF_MS = 2000;
+const LEAGUE_TO_ESPN_SLUG = {
+ '4328': 'soccer/league/_/name/eng.1', // EPL
+ '4391': 'nfl',
+ '4387': 'nba',
+ '4424': 'mlb',
+ '4380': 'nhl',
+ '4427': 'wnba',
+ '4516': 'wnba',
+ '4335': 'soccer/league/_/name/esp.1', // La Liga
+ '4332': 'soccer/league/_/name/ita.1' // Serie A
+};
+
+const TEAM_ESPN_SLUG_OVERRIDES = {
+ // Map TSDB Team IDs to ESPN slugs if shortname/name logic fails
+ '134865': 'gs', // Golden State Warriors (GSW)
+ '134948': 'sf', // San Francisco 49ers (SF)
+ '135260': 'nyy', // New York Yankees
+ '133604': 'ars' // Arsenal
+};
+
+const SUPPLEMENTAL_CONFIGS = {
+ // WNBA
+ '4516': {
+ url: 'https://github.com/sportsdataverse/sportsdataverse-data/releases/download/espn_wnba_schedules/wnba_schedule_2026.csv',
+ mapping: {
+ date: 'date',
+ home: 'home_display_name',
+ away: 'away_display_name',
+ venue: 'venue_full_name',
+ id: 'id'
+ }
+ },
+ // NBA
+ '4387': {
+ url: 'https://github.com/sportsdataverse/sportsdataverse-data/releases/download/espn_nba_schedules/nba_schedule_2026.csv',
+ mapping: {
+ date: 'date',
+ home: 'home_display_name',
+ away: 'away_display_name',
+ venue: 'venue_full_name',
+ id: 'id'
+ }
+ },
+ // NFL
+ '4391': {
+ url: 'https://github.com/nflverse/nflverse-data/releases/download/schedules/games.csv',
+ mapping: {
+ date: 'gameday',
+ time: 'gametime',
+ home: 'home_team',
+ away: 'away_team',
+ venue: 'stadium',
+ id: 'game_id'
+ }
+ },
+ // NHL
+ '4380': {
+ url: 'https://github.com/sportsdataverse/sportsdataverse-data/releases/download/nhl_schedules/nhl_schedule_2026.csv',
+ mapping: {
+ date: 'game_date',
+ time: 'game_time',
+ home: 'home_team_name',
+ away: 'away_team_name',
+ venue: 'venue',
+ id: 'game_id'
+ }
+ }
+};
+
// Major leagues to track
const LEAGUES = [
{ id: '4328', name: 'EPL' },
@@ -16,7 +87,7 @@ const LEAGUES = [
{ id: '4387', name: 'NBA' },
{ id: '4424', name: 'MLB' },
{ id: '4380', name: 'NHL' },
- { id: '4427', name: 'WNBA' },
+ { id: '4516', name: 'WNBA' },
{ id: '4335', name: 'La Liga' },
{ id: '4332', name: 'Serie A' },
{ id: '4331', name: 'Bundesliga' },
@@ -84,6 +155,162 @@ async function fetchJson(url, retryCount = 0) {
}
}
+async function fetchLeagueSupplementalCSV(league, teams) {
+ const config = SUPPLEMENTAL_CONFIGS[league.id];
+ if (!config) return;
+
+ console.log(`Fetching ${league.name} supplemental data from SportsDataverse...`);
+ const controller = new AbortController();
+ const timeout = setTimeout(() => controller.abort(), FETCH_TIMEOUT_MS);
+
+ try {
+ const response = await fetch(config.url, { signal: controller.signal });
+ if (!response.ok) throw new Error(`Failed to fetch ${league.name} CSV: ${response.status}`);
+ const csvText = await response.text();
+
+ const teamSupplemental = new Map(); // teamName/abbr -> events[]
+ const rows = [];
+ let currentRow = [];
+ let currentField = '';
+ let inQuotes = false;
+
+ for (let j = 0; j < csvText.length; j++) {
+ const char = csvText[j];
+ const nextChar = csvText[j + 1];
+
+ if (char === '"') {
+ if (inQuotes && nextChar === '"') {
+ currentField += '"';
+ j++;
+ } else {
+ inQuotes = !inQuotes;
+ }
+ } else if (char === ',' && !inQuotes) {
+ currentRow.push(currentField);
+ currentField = '';
+ } else if ((char === '\r' || char === '\n') && !inQuotes) {
+ if (currentField !== '' || currentRow.length > 0) {
+ currentRow.push(currentField);
+ rows.push(currentRow);
+ currentField = '';
+ currentRow = [];
+ }
+ if (char === '\r' && nextChar === '\n') j++;
+ } else {
+ currentField += char;
+ }
+ }
+
+ if (currentField !== '' || currentRow.length > 0) {
+ currentRow.push(currentField);
+ rows.push(currentRow);
+ }
+
+ const header = rows[0];
+ const mapping = config.mapping;
+ const indices = {};
+ for (const [key, field] of Object.entries(mapping)) {
+ indices[key] = header.indexOf(field);
+ }
+
+ if (indices.date === -1 || indices.home === -1 || indices.away === -1) {
+ throw new Error(`Malformed ${league.name} CSV header (missing required fields)`);
+ }
+
+ for (let i = 1; i < rows.length; i++) {
+ const parts = rows[i];
+ const dateRaw = parts[indices.date];
+ const homeRaw = parts[indices.home];
+ const awayRaw = parts[indices.away];
+ const venue = indices.venue !== -1 ? parts[indices.venue] : null;
+ const eventId = indices.id !== -1 ? parts[indices.id] : `${i}`;
+ const timeRaw = indices.time !== -1 ? parts[indices.time] : null;
+
+ if (!dateRaw || !homeRaw || !awayRaw) continue;
+
+ let dateEvent = dateRaw;
+ let strTime = '00:00:00';
+ let strTimestamp = null;
+
+ if (dateRaw.includes('T')) {
+ [dateEvent, strTime] = dateRaw.split('T');
+ strTime = strTime.replace('Z', '');
+ strTimestamp = dateRaw;
+ } else if (timeRaw) {
+ strTime = timeRaw;
+ }
+
+ if (strTime.length === 5) strTime += ':00'; // HH:mm -> HH:mm:ss
+ if (!strTimestamp) {
+ strTimestamp = `${dateEvent}T${strTime}Z`;
+ } else if (!strTimestamp.endsWith('Z') && !/[-+]\d{2}:?\d{2}$/.test(strTimestamp)) {
+ strTimestamp += 'Z';
+ }
+
+ const event = {
+ idEvent: `sdv-${league.name.toLowerCase()}-${eventId}`,
+ strEvent: `${homeRaw} vs ${awayRaw}`,
+ strHomeTeam: homeRaw,
+ strAwayTeam: awayRaw,
+ dateEvent,
+ strTime,
+ strTimestamp,
+ strLeague: league.name,
+ strVenue: venue,
+ strStatus: 'NS',
+ source: 'sportsdataverse'
+ };
+
+ if (!teamSupplemental.has(homeRaw)) teamSupplemental.set(homeRaw, []);
+ if (!teamSupplemental.has(awayRaw)) teamSupplemental.set(awayRaw, []);
+
+ teamSupplemental.get(homeRaw).push(event);
+ teamSupplemental.get(awayRaw).push(event);
+ }
+
+ // Save for each team
+ for (const team of teams) {
+ let teamEvents = teamSupplemental.get(team.strTeam);
+
+ if (!teamEvents) {
+ // Fallback: search keys in teamSupplemental
+ const normalizedTarget = team.strTeam.toLowerCase().trim();
+ const shortTarget = team.strTeamShort?.toLowerCase().trim();
+
+ for (const [name, events] of teamSupplemental.entries()) {
+ const normalizedName = name.toLowerCase().trim();
+ if (normalizedName === normalizedTarget || (shortTarget && normalizedName === shortTarget) || normalizedTarget.includes(normalizedName) || normalizedName.includes(normalizedTarget)) {
+ teamEvents = events;
+ console.log(` Found tolerant match for ${league.name} team: "${name}" -> "${team.strTeam}"`);
+ break;
+ }
+ }
+ }
+
+ if (teamEvents) {
+ const filePath = path.join(SUPPLEMENTAL_DATA_DIR, `${team.idTeam}.json`);
+ await fs.writeFile(filePath, JSON.stringify({
+ teamId: team.idTeam,
+ teamName: team.strTeam,
+ updatedAt: new Date().toISOString(),
+ events: teamEvents
+ }, null, 2));
+ console.log(` Saved ${teamEvents.length} supplemental events for ${team.strTeam} (${team.idTeam})`);
+ } else {
+ console.warn(` No supplemental events found for ${team.strTeam} (${team.idTeam})`);
+ }
+ }
+ } catch (error) {
+ if (error.name === 'AbortError') {
+ console.error(` ${league.name} CSV request timed out after ${FETCH_TIMEOUT_MS}ms`);
+ } else {
+ console.error(` Error fetching ${league.name} supplemental data:`, error.message);
+ }
+ } finally {
+ clearTimeout(timeout);
+ }
+}
+
async function fetchLeagueEvents(leagueId) {
console.log(`Fetching league ${leagueId}...`);
@@ -129,11 +356,39 @@ async function fetchLeagueEvents(leagueId) {
return allEvents;
}
+function getESPNTeamSlug(team) {
+ if (TEAM_ESPN_SLUG_OVERRIDES[team.idTeam]) {
+ return TEAM_ESPN_SLUG_OVERRIDES[team.idTeam];
+ }
+ return team.strTeamShort?.toLowerCase() || team.strTeam?.toLowerCase().replace(/\s+/g, '-');
+}
+
+async function isSupplementalStale(teamId) {
+ try {
+ const filePath = path.join(SUPPLEMENTAL_DATA_DIR, `${teamId}.json`);
+ const content = await fs.readFile(filePath, 'utf8');
+ const data = JSON.parse(content);
+ if (!data.updatedAt) return true;
+
+ const lastUpdated = new Date(data.updatedAt).getTime();
+ if (Number.isNaN(lastUpdated)) return true;
+
+ const now = Date.now();
+ const sixHoursMs = 6 * 60 * 60 * 1000;
+ return now - lastUpdated > sixHoursMs;
+ } catch (error) {
+ return true; // File doesn't exist or is invalid
+ }
+}
+
+
async function main() {
await fs.mkdir(DATA_DIR, { recursive: true });
+ await fs.mkdir(SUPPLEMENTAL_DATA_DIR, { recursive: true });
for (const league of LEAGUES) {
try {
+ // 1. Fetch League Events (Legacy)
const events = await fetchLeagueEvents(league.id);
if (events.length > 0) {
const filePath = path.join(DATA_DIR, `${league.id}.json`);
@@ -145,6 +400,75 @@ async function main() {
}, null, 2));
console.log(`Saved ${events.length} events for ${league.name} to ${filePath}`);
}
+
+ // 2. Discover Teams and Scrape (New)
+ console.log(`Discovering teams for ${league.name}...`);
+ const teamsUrl = `${SPORTSDB_BASE_URL}/lookup_all_teams.php?id=${league.id}`;
+ const teamsData = await fetchJson(teamsUrl);
+ const teams = teamsData.teams || [];
+
+ if (SUPPLEMENTAL_CONFIGS[league.id]) {
+ await fetchLeagueSupplementalCSV(league, teams);
+ }
+
+ if (process.env.FIRECRAWL_API_KEY) {
+ for (const team of teams) {
+ const isStale = await isSupplementalStale(team.idTeam);
+ if (!isStale) {
+ console.log(` Supplemental data for ${team.strTeam} is fresh.`);
+ continue;
+ }
+
+ let allScrapedGames = [];
+
+ // 2a. Scrape ESPN (Priority)
+ const espnLeagueSlug = LEAGUE_TO_ESPN_SLUG[league.id];
+ if (espnLeagueSlug) {
+ const teamSlug = getESPNTeamSlug(team);
+ console.log(` Scraping ESPN for ${team.strTeam} (${teamSlug})...`);
+ try {
+ const espnGames = await fetchScheduleFromESPN(espnLeagueSlug, teamSlug);
+ if (espnGames.length > 0) {
+ allScrapedGames.push(...espnGames);
+ console.log(` Found ${espnGames.length} games on ESPN.`);
+ }
+ } catch (error) {
+ console.error(` Error scraping ESPN for ${team.strTeam}:`, error.message);
+ }
+ }
+
+ // 2b. Scrape Official Website (Fallback/Additional)
+ if (team.strWebsite && allScrapedGames.length === 0) {
+ console.log(` Scraping ${team.strTeam} official website: ${team.strWebsite}...`);
+ try {
+ const websiteGames = await fetchScheduleFromWebsite(team.strWebsite);
+ if (websiteGames.length > 0) {
+ allScrapedGames.push(...websiteGames);
+ console.log(` Found ${websiteGames.length} games on official website.`);
+ }
+ } catch (error) {
+ console.error(` Error scraping official website for ${team.strTeam}:`, error.message);
+ }
+ }
+
+ // 2c. Save Merged Results
+ if (allScrapedGames.length > 0) {
+ const filePath = path.join(SUPPLEMENTAL_DATA_DIR, `${team.idTeam}.json`);
+ const normalizedEvents = allScrapedGames.map(g => normalizeScrapedEvent(g, team.strTeam));
+
+ await fs.writeFile(filePath, JSON.stringify({
+ teamId: team.idTeam,
+ teamName: team.strTeam,
+ updatedAt: new Date().toISOString(),
+ events: normalizedEvents
+ }, null, 2));
+ console.log(` Saved ${normalizedEvents.length} total supplemental events for ${team.strTeam}`);
+
+ // Significant throttle for Firecrawl
+ await sleep(8000);
+ }
+ }
+ }
} catch (error) {
console.error(`Error fetching ${league.name}:`, error.message);
}
diff --git a/test/sports.test.js b/test/sports.test.js
index d281163..d1e1215 100644
--- a/test/sports.test.js
+++ b/test/sports.test.js
@@ -197,6 +197,52 @@ test('getUpcomingEvents utilizes local cache if available', async (t) => {
}
});
+test('getUpcomingEvents merges supplemental (scraped) data', async (t) => {
+ const clock = t.mock.timers;
+ clock.enable({ names: ['Date'], now: new Date('2026-01-01T00:00:00Z') });
+
+ const teamId = '133604';
+ const supplementalDir = path.join(CACHE_DIR, 'supplemental');
+ const supplementalFilePath = path.join(supplementalDir, `${teamId}.json`);
+ const scrapedData = {
+ teamId,
+ teamName: 'Arsenal',
+ updatedAt: new Date().toISOString(),
+ events: [
+ {
+ idEvent: 'scraped-2026-12-31-arsenal-vs-scraped',
+ strEvent: 'Arsenal vs Scraped',
+ strHomeTeam: 'Arsenal',
+ strAwayTeam: 'Scraped',
+ dateEvent: '2026-12-31',
+ strTime: '15:00:00',
+ strTimestamp: '2026-12-31T15:00:00Z',
+ strLeague: 'Premier League',
+ strVenue: 'Scraped Stadium',
+ strStatus: 'NS',
+ source: 'scraped'
+ }
+ ]
+ };
+
+ await fs.mkdir(supplementalDir, { recursive: true });
+ await fs.writeFile(supplementalFilePath, JSON.stringify(scrapedData));
+
+ try {
+ const result = await getUpcomingEvents({
+ teamId,
+ fetchImpl: createFetchMock()
+ });
+
+ // Should include TSDB events (1, 3, 4) AND scraped event (scraped-...)
+ assert.equal(result.events.length, 4);
+ assert.ok(result.events.some(e => e.id === 'scraped-2026-12-31-arsenal-vs-scraped'));
+ assert.equal(result.events.find(e => e.id.includes('scraped')).name, 'Arsenal vs Scraped');
+ } finally {
+ await fs.unlink(supplementalFilePath).catch(() => {});
+ }
+});
+
test('toIcs creates ICS for sports events', async (t) => {
const clock = t.mock.timers;
clock.enable({ names: ['Date'], now: new Date('2026-01-01T00:00:00Z') });
From 67cf17d3906b6156a215b31e26cf917805151358 Mon Sep 17 00:00:00 2001
From: DisabledAbel <196466003+DisabledAbel@users.noreply.github.com>
Date: Fri, 12 Jun 2026 18:22:42 +0000
Subject: [PATCH 2/3] =?UTF-8?q?=F0=9F=93=85=20Automate=20ESPN=20scraping?=
=?UTF-8?q?=20and=20SportsDataverse=20integration?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
- Scrape ESPN team schedule pages every 6 hours via Firecrawl
- Integrate bulk schedules from SportsDataverse (NBA, NFL, NHL, WNBA)
- Implement robust character-based CSV parser for external datasets
- Add tolerant team matching with abbreviations and prefix support
- Normalize all times to HH:mm:ss with 'Z' UTC designator
- Synchronize internal caching with 6-hour workflow frequency
- Ensure deterministic merging logic in unit tests
- Fixed WNBA league ID to 4516 and improved date validation robustness
---
lib/data/sports/4329.json | 2 +-
lib/data/sports/4330.json | 48 +-
lib/data/sports/4331.json | 2 +-
lib/data/sports/4332.json | 2 +-
lib/data/sports/4334.json | 18332 ++++++++++----------
lib/data/sports/4335.json | 2 +-
lib/data/sports/4337.json | 17250 +++++++++----------
lib/data/sports/4339.json | 2 +-
lib/data/sports/4344.json | 206 +-
lib/data/sports/4346.json | 2 +-
lib/data/sports/4350.json | 308 +-
lib/data/sports/4351.json | 18627 ---------------------
lib/data/sports/4380.json | 2 +-
lib/data/sports/4387.json | 2 +-
lib/data/sports/4391.json | 2 +-
lib/data/sports/4408.json | 2 +-
lib/data/sports/4424.json | 338 +-
lib/data/sports/4480.json | 2 +-
lib/data/sports/4481.json | 66 +-
lib/data/sports/4482.json | 2 +-
lib/data/sports/supplemental/136437.json | 579 -
lib/data/sports/supplemental/136438.json | 579 -
lib/sports.js | 1 -
scripts/fetch-sports.js | 48 +-
24 files changed, 18316 insertions(+), 38090 deletions(-)
delete mode 100644 lib/data/sports/4351.json
delete mode 100644 lib/data/sports/supplemental/136437.json
delete mode 100644 lib/data/sports/supplemental/136438.json
diff --git a/lib/data/sports/4329.json b/lib/data/sports/4329.json
index 00c52da..005f190 100644
--- a/lib/data/sports/4329.json
+++ b/lib/data/sports/4329.json
@@ -1,7 +1,7 @@
{
"leagueId": "4329",
"leagueName": "English Championship",
- "updatedAt": "2026-06-12T14:48:05.139Z",
+ "updatedAt": "2026-06-11T07:02:08.193Z",
"events": [
{
"idEvent": "2275190",
diff --git a/lib/data/sports/4330.json b/lib/data/sports/4330.json
index 6837862..f2fa282 100644
--- a/lib/data/sports/4330.json
+++ b/lib/data/sports/4330.json
@@ -1,7 +1,7 @@
{
"leagueId": "4330",
"leagueName": "Scottish Premiership",
- "updatedAt": "2026-06-12T14:51:24.284Z",
+ "updatedAt": "2026-06-11T07:05:28.188Z",
"events": [
{
"idEvent": "2270549",
@@ -277,7 +277,7 @@
"idHomeTeam": "133643",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/twqvyt1447597939.png",
"idAwayTeam": "133638",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -569,7 +569,7 @@
"strTimeLocal": "12:30:00",
"strGroup": "",
"idHomeTeam": "133638",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"idAwayTeam": "133647",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3uv1641758780002.png",
"intScore": null,
@@ -816,7 +816,7 @@
"idHomeTeam": "133644",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/orfh821655722356.png",
"idAwayTeam": "133638",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -1010,7 +1010,7 @@
"strTimeLocal": "15:00:00",
"strGroup": "",
"idHomeTeam": "133638",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"idAwayTeam": "133838",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/w37ucy1685023169.png",
"intScore": null,
@@ -1206,7 +1206,7 @@
"strTimeLocal": "15:00:00",
"strGroup": "",
"idHomeTeam": "133638",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"idAwayTeam": "134133",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1o38ll1749203191.png",
"intScore": null,
@@ -1649,7 +1649,7 @@
"idHomeTeam": "133640",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsysqx1447598301.png",
"idAwayTeam": "133638",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -1941,7 +1941,7 @@
"strTimeLocal": "15:00:00",
"strGroup": "",
"idHomeTeam": "133638",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"idAwayTeam": "133942",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tlei9x1750743461.png",
"intScore": null,
@@ -2286,7 +2286,7 @@
"idHomeTeam": "133649",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xvtuvv1447604452.png",
"idAwayTeam": "133638",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -2529,7 +2529,7 @@
"strTimeLocal": "14:30:00",
"strGroup": "",
"idHomeTeam": "133638",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"idAwayTeam": "133646",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qjys3z1684928969.png",
"intScore": null,
@@ -2825,7 +2825,7 @@
"idHomeTeam": "133645",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xssqtu1447596951.png",
"idAwayTeam": "133638",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -3362,7 +3362,7 @@
"strTimeLocal": "15:00:00",
"strGroup": "",
"idHomeTeam": "133638",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"idAwayTeam": "133640",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsysqx1447598301.png",
"intScore": null,
@@ -4050,7 +4050,7 @@
"idHomeTeam": "134133",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1o38ll1749203191.png",
"idAwayTeam": "133638",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -4195,7 +4195,7 @@
"strTimeLocal": "19:45:00",
"strGroup": "",
"idHomeTeam": "133638",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"idAwayTeam": "133649",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xvtuvv1447604452.png",
"intScore": null,
@@ -4832,7 +4832,7 @@
"strTimeLocal": "15:00:00",
"strGroup": "",
"idHomeTeam": "133638",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"idAwayTeam": "133645",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xssqtu1447596951.png",
"intScore": null,
@@ -5716,7 +5716,7 @@
"idHomeTeam": "133646",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qjys3z1684928969.png",
"idAwayTeam": "133638",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -6010,7 +6010,7 @@
"idHomeTeam": "133838",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/w37ucy1685023169.png",
"idAwayTeam": "133638",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -7282,7 +7282,7 @@
"strTimeLocal": "20:00:00",
"strGroup": "",
"idHomeTeam": "133638",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"idAwayTeam": "133647",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3uv1641758780002.png",
"intScore": null,
@@ -7627,7 +7627,7 @@
"idHomeTeam": "133644",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/orfh821655722356.png",
"idAwayTeam": "133638",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -7872,7 +7872,7 @@
"idHomeTeam": "133640",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsysqx1447598301.png",
"idAwayTeam": "133638",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -8362,7 +8362,7 @@
"idHomeTeam": "133643",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/twqvyt1447597939.png",
"idAwayTeam": "133638",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -8556,7 +8556,7 @@
"strTimeLocal": "15:00:00",
"strGroup": "",
"idHomeTeam": "133638",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"idAwayTeam": "133838",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/w37ucy1685023169.png",
"intScore": null,
@@ -9781,7 +9781,7 @@
"strTimeLocal": "15:00:00",
"strGroup": "",
"idHomeTeam": "133638",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"idAwayTeam": "133645",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xssqtu1447596951.png",
"intScore": null,
@@ -10028,7 +10028,7 @@
"idHomeTeam": "134133",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1o38ll1749203191.png",
"idAwayTeam": "133638",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/f9s6vg1781155578.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvwys1447597299.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
diff --git a/lib/data/sports/4331.json b/lib/data/sports/4331.json
index 3daaf12..532dda6 100644
--- a/lib/data/sports/4331.json
+++ b/lib/data/sports/4331.json
@@ -1,7 +1,7 @@
{
"leagueId": "4331",
"leagueName": "Bundesliga",
- "updatedAt": "2026-06-12T14:39:04.527Z",
+ "updatedAt": "2026-06-11T02:25:03.060Z",
"events": [
{
"idEvent": "2276638",
diff --git a/lib/data/sports/4332.json b/lib/data/sports/4332.json
index e7e6a75..b811a56 100644
--- a/lib/data/sports/4332.json
+++ b/lib/data/sports/4332.json
@@ -1,7 +1,7 @@
{
"leagueId": "4332",
"leagueName": "Serie A",
- "updatedAt": "2026-06-12T14:37:30.055Z",
+ "updatedAt": "2026-06-11T02:23:27.534Z",
"events": [
{
"idEvent": "2482138",
diff --git a/lib/data/sports/4334.json b/lib/data/sports/4334.json
index bf70e93..1293ec8 100644
--- a/lib/data/sports/4334.json
+++ b/lib/data/sports/4334.json
@@ -1,14999 +1,14999 @@
{
"leagueId": "4334",
"leagueName": "Ligue 1",
- "updatedAt": "2026-06-12T14:40:39.068Z",
+ "updatedAt": "2026-06-11T02:26:38.679Z",
"events": [
{
- "idEvent": "2489462",
- "idAPIfootball": "1552729",
- "strTimestamp": "2026-08-22T15:00:00",
- "strEvent": "Angers vs Lille",
- "strEventAlternate": "Lille @ Angers",
- "strFilename": "French Ligue 1 2026-08-22 Angers vs Lille",
+ "idEvent": "2278117",
+ "idAPIfootball": "1387706",
+ "strTimestamp": "2025-08-15T18:45:00",
+ "strEvent": "Rennes vs Marseille",
+ "strEventAlternate": "Marseille @ Rennes",
+ "strFilename": "French Ligue 1 2025-08-15 Rennes vs Marseille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Angers",
- "strAwayTeam": "Lille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Rennes",
+ "strAwayTeam": "Marseille",
+ "intHomeScore": "1",
"intRound": "1",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-22",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134709",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
- "idAwayTeam": "133711",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "dateEvent": "2025-08-15",
+ "dateEventLocal": "2025-08-15",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133719",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "idAwayTeam": "133707",
+ "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "29067",
- "strVenue": "Stade Raymond Kopa",
+ "strResult": "",
+ "idVenue": "16104",
+ "strVenue": "Roazhon Park",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/qvwo0b1756020218.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/r7pwwt1756019465.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/gk242j1754808650.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/nzh7j41754726733.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=bE664rJkmK0",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489463",
- "idAPIfootball": "1552733",
- "strTimestamp": "2026-08-22T15:00:00",
- "strEvent": "Marseille vs Strasbourg",
- "strEventAlternate": "Strasbourg @ Marseille",
- "strFilename": "French Ligue 1 2026-08-22 Marseille vs Strasbourg",
+ "idEvent": "2278112",
+ "idAPIfootball": "1387701",
+ "strTimestamp": "2025-08-16T15:00:00",
+ "strEvent": "Lens vs Lyon",
+ "strEventAlternate": "Lyon @ Lens",
+ "strFilename": "French Ligue 1 2025-08-16 Lens vs Lyon",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Marseille",
- "strAwayTeam": "Strasbourg",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lens",
+ "strAwayTeam": "Lyon",
+ "intHomeScore": "0",
"intRound": "1",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-22",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-16",
+ "dateEventLocal": "2025-08-16",
"strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133707",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
- "idAwayTeam": "133882",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133822",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "idAwayTeam": "133713",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "27345",
- "strVenue": "Orange Vélodrome",
+ "strResult": "",
+ "idVenue": "18385",
+ "strVenue": "Stade Bollaert-Delelis",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/q65bdr1781251450.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/4dmbee1756019447.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/nl4k6k1781249482.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/grfy9q1754726714.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=uT8-5Hg2_U0",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489464",
- "idAPIfootball": "1552734",
- "strTimestamp": "2026-08-22T15:00:00",
- "strEvent": "Nice vs Lorient",
- "strEventAlternate": "Lorient @ Nice",
- "strFilename": "French Ligue 1 2026-08-22 Nice vs Lorient",
+ "idEvent": "2278114",
+ "idAPIfootball": "1387703",
+ "strTimestamp": "2025-08-16T17:00:00",
+ "strEvent": "Monaco vs Le Havre",
+ "strEventAlternate": "Le Havre @ Monaco",
+ "strFilename": "French Ligue 1 2025-08-16 Monaco vs Le Havre",
+ "strSport": "Soccer",
+ "idLeague": "4334",
+ "strLeague": "French Ligue 1",
+ "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Monaco",
+ "strAwayTeam": "Le Havre",
+ "intHomeScore": "3",
+ "intRound": "1",
+ "intAwayScore": "1",
+ "intSpectators": null,
+ "strOfficial": "",
+ "strWeather": null,
+ "dateEvent": "2025-08-16",
+ "dateEventLocal": "2025-08-16",
+ "strTime": "17:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133823",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "idAwayTeam": "133862",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "intScore": null,
+ "intScoreVotes": null,
+ "strResult": "",
+ "idVenue": "16243",
+ "strVenue": "Stade Louis II",
+ "strCountry": "Monaco",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ifgial1756019455.jpg",
+ "strSquare": "",
+ "strFanart": null,
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ft79uk1754726721.jpg",
+ "strBanner": "",
+ "strMap": null,
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=7Ix0_t3rgsk",
+ "strStatus": "FT",
+ "strPostponed": "no",
+ "strLocked": "unlocked"
+ },
+ {
+ "idEvent": "2278116",
+ "idAPIfootball": "1387705",
+ "strTimestamp": "2025-08-16T19:05:00",
+ "strEvent": "Nice vs Toulouse",
+ "strEventAlternate": "Toulouse @ Nice",
+ "strFilename": "French Ligue 1 2025-08-16 Nice vs Toulouse",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Nice",
- "strAwayTeam": "Lorient",
- "intHomeScore": null,
+ "strAwayTeam": "Toulouse",
+ "intHomeScore": "0",
"intRound": "1",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-22",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2025-08-16",
+ "dateEventLocal": "2025-08-16",
+ "strTime": "19:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
"idHomeTeam": "133712",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
- "idAwayTeam": "133715",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "idAwayTeam": "133703",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "16106",
"strVenue": "Allianz Riviera",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/uu1iu61756020236.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/zl28q61756019461.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pq38jj1754808668.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9j7rh81754726729.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=nbuJcgJWqn0",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489465",
- "idAPIfootball": "1552735",
- "strTimestamp": "2026-08-22T15:00:00",
- "strEvent": "Paris Saint-Germain vs Rennes",
- "strEventAlternate": "Rennes @ Paris Saint-Germain",
- "strFilename": "French Ligue 1 2026-08-22 Paris Saint-Germain vs Rennes",
+ "idEvent": "2278109",
+ "idAPIfootball": "1387698",
+ "strTimestamp": "2025-08-17T15:15:00",
+ "strEvent": "Angers vs Paris FC",
+ "strEventAlternate": "Paris FC @ Angers",
+ "strFilename": "French Ligue 1 2025-08-17 Angers vs Paris FC",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris Saint-Germain",
- "strAwayTeam": "Rennes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Angers",
+ "strAwayTeam": "Paris FC",
+ "intHomeScore": "1",
"intRound": "1",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-22",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133714",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
- "idAwayTeam": "133719",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "dateEvent": "2025-08-17",
+ "dateEventLocal": "2025-08-17",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134709",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "idAwayTeam": "135465",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16024",
- "strVenue": "Parc des Princes",
+ "strResult": "",
+ "idVenue": "29067",
+ "strVenue": "Stade Raymond Kopa",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/p01bd31781251451.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/foru7d1756019437.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/52nst91781249115.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0b83e31754726702.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=eIPynJmqp-o",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489466",
- "idAPIfootball": "1552736",
- "strTimestamp": "2026-08-22T15:00:00",
- "strEvent": "Toulouse vs Lyon",
- "strEventAlternate": "Lyon @ Toulouse",
- "strFilename": "French Ligue 1 2026-08-22 Toulouse vs Lyon",
+ "idEvent": "2278110",
+ "idAPIfootball": "1387699",
+ "strTimestamp": "2025-08-17T15:15:00",
+ "strEvent": "Auxerre vs Lorient",
+ "strEventAlternate": "Lorient @ Auxerre",
+ "strFilename": "French Ligue 1 2025-08-17 Auxerre vs Lorient",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Toulouse",
- "strAwayTeam": "Lyon",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Auxerre",
+ "strAwayTeam": "Lorient",
+ "intHomeScore": "1",
"intRound": "1",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-22",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133703",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
- "idAwayTeam": "133713",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "dateEvent": "2025-08-17",
+ "dateEventLocal": "2025-08-17",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134788",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "idAwayTeam": "133715",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18238",
- "strVenue": "Stadium de Toulouse",
+ "strResult": "",
+ "idVenue": "16189",
+ "strVenue": "Stade de l'Abbé Deschamps",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/gg9shf1756020612.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/svv4qg1756019441.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fmk0qc1754809075.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/j4q1wo1754726706.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=xnQR3i0nvy0",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489467",
- "idAPIfootball": "1552737",
- "strTimestamp": "2026-08-22T15:00:00",
- "strEvent": "Troyes vs Paris FC",
- "strEventAlternate": "Paris FC @ Troyes",
- "strFilename": "French Ligue 1 2026-08-22 Troyes vs Paris FC",
+ "idEvent": "2278111",
+ "idAPIfootball": "1387700",
+ "strTimestamp": "2025-08-17T13:00:00",
+ "strEvent": "Brest vs Lille",
+ "strEventAlternate": "Lille @ Brest",
+ "strFilename": "French Ligue 1 2025-08-17 Brest vs Lille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Troyes",
- "strAwayTeam": "Paris FC",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Brest",
+ "strAwayTeam": "Lille",
+ "intHomeScore": "3",
"intRound": "1",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-22",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134789",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
- "idAwayTeam": "135465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "dateEvent": "2025-08-17",
+ "dateEventLocal": "2025-08-17",
+ "strTime": "13:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133704",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "idAwayTeam": "133711",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16192",
- "strVenue": "Stade de l'Aube",
+ "strResult": "",
+ "idVenue": "17543",
+ "strVenue": "Stade Francis-Le Blé",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/r846cx1781251783.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/80wp201756019444.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/21h7uu1781249116.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/c17mzj1754726710.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=jLkdwv6x4Lc",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489468",
- "idAPIfootball": "1552730",
- "strTimestamp": "2026-08-22T15:00:00",
- "strEvent": "Le Havre vs Monaco",
- "strEventAlternate": "Monaco @ Le Havre",
- "strFilename": "French Ligue 1 2026-08-22 Le Havre vs Monaco",
+ "idEvent": "2278113",
+ "idAPIfootball": "1387702",
+ "strTimestamp": "2025-08-17T15:15:00",
+ "strEvent": "Metz vs Strasbourg",
+ "strEventAlternate": "Strasbourg @ Metz",
+ "strFilename": "French Ligue 1 2025-08-17 Metz vs Strasbourg",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Havre",
- "strAwayTeam": "Monaco",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Metz",
+ "strAwayTeam": "Strasbourg",
+ "intHomeScore": "0",
"intRound": "1",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-22",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133862",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
- "idAwayTeam": "133823",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "dateEvent": "2025-08-17",
+ "dateEventLocal": "2025-08-17",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133883",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
+ "idAwayTeam": "133882",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16108",
- "strVenue": "Stade Océane",
+ "strResult": "",
+ "idVenue": "16242",
+ "strVenue": "Stade Saint-Symphorien",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/f6eiim1756020082.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ms15uo1756019451.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fw1lkz1754808527.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/iau3b11754726718.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=DX-FZTZJ6R8",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489469",
- "idAPIfootball": "1552732",
- "strTimestamp": "2026-08-22T15:00:00",
- "strEvent": "Lens vs Auxerre",
- "strEventAlternate": "Auxerre @ Lens",
- "strFilename": "French Ligue 1 2026-08-22 Lens vs Auxerre",
+ "idEvent": "2278115",
+ "idAPIfootball": "1387704",
+ "strTimestamp": "2025-08-17T18:45:00",
+ "strEvent": "Nantes vs Paris Saint-Germain",
+ "strEventAlternate": "Paris SG @ Nantes",
+ "strFilename": "French Ligue 1 2025-08-17 Nantes vs Paris Saint-Germain",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lens",
- "strAwayTeam": "Auxerre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nantes",
+ "strAwayTeam": "Paris SG",
+ "intHomeScore": "0",
"intRound": "1",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-22",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133822",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
- "idAwayTeam": "134788",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "dateEvent": "2025-08-17",
+ "dateEventLocal": "2025-08-17",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133861",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
+ "idAwayTeam": "133714",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18385",
- "strVenue": "Stade Bollaert-Delelis",
+ "strResult": "",
+ "idVenue": "16244",
+ "strVenue": "Stade de la Beaujoire - Louis Fonteneau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/euqgzo1756020047.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/xo11lc1756019458.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fuif2s1754808491.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/84ixnr1754726725.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=PVOs9K9bhgg",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489470",
- "idAPIfootball": "1552731",
- "strTimestamp": "2026-08-22T15:00:00",
- "strEvent": "Le Mans vs Brest",
- "strEventAlternate": "Brest @ Le Mans",
- "strFilename": "French Ligue 1 2026-08-22 Le Mans vs Brest",
+ "idEvent": "2278124",
+ "idAPIfootball": "1387713",
+ "strTimestamp": "2025-08-22T18:45:00",
+ "strEvent": "Paris Saint-Germain vs Angers",
+ "strEventAlternate": "Angers @ Paris SG",
+ "strFilename": "French Ligue 1 2025-08-22 Paris Saint-Germain vs Angers",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Mans",
- "strAwayTeam": "Brest",
- "intHomeScore": null,
- "intRound": "1",
- "intAwayScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris SG",
+ "strAwayTeam": "Angers",
+ "intHomeScore": "1",
+ "intRound": "2",
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-22",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133848",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
- "idAwayTeam": "133704",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "dateEvent": "2025-08-22",
+ "dateEventLocal": "2025-08-22",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133714",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "idAwayTeam": "134709",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "26610",
- "strVenue": "Stade Marie-Marvingt",
+ "strResult": "",
+ "idVenue": "16024",
+ "strVenue": "Parc des Princes",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/2cs8w41781251452.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/v9fbks1756019489.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/ji24f01781249117.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0p82e31754726759.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=Rt0knlKBPgg",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489471",
- "idAPIfootball": "1552741",
- "strTimestamp": "2026-08-29T15:00:00",
- "strEvent": "Lyon vs Le Havre",
- "strEventAlternate": "Le Havre @ Lyon",
- "strFilename": "French Ligue 1 2026-08-29 Lyon vs Le Havre",
+ "idEvent": "2278121",
+ "idAPIfootball": "1387710",
+ "strTimestamp": "2025-08-23T19:05:00",
+ "strEvent": "Lyon vs Metz",
+ "strEventAlternate": "Metz @ Lyon",
+ "strFilename": "French Ligue 1 2025-08-23 Lyon vs Metz",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Lyon",
- "strAwayTeam": "Le Havre",
- "intHomeScore": null,
+ "strAwayTeam": "Metz",
+ "intHomeScore": "3",
"intRound": "2",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-29",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2025-08-23",
+ "dateEventLocal": "2025-08-23",
+ "strTime": "19:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
"idHomeTeam": "133713",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
- "idAwayTeam": "133862",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "idAwayTeam": "133883",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "16131",
"strVenue": "Groupama Stadium",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/gifk331756019956.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/o7s3xr1756019479.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/elcpwk1754727280.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pd5p2x1754726747.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=ykoDUWa4S2s",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489472",
- "idAPIfootball": "1552742",
- "strTimestamp": "2026-08-29T15:00:00",
- "strEvent": "Monaco vs Marseille",
- "strEventAlternate": "Marseille @ Monaco",
- "strFilename": "French Ligue 1 2026-08-29 Monaco vs Marseille",
+ "idEvent": "2278122",
+ "idAPIfootball": "1387711",
+ "strTimestamp": "2025-08-23T15:00:00",
+ "strEvent": "Marseille vs Paris FC",
+ "strEventAlternate": "Paris FC @ Marseille",
+ "strFilename": "French Ligue 1 2025-08-23 Marseille vs Paris FC",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Monaco",
- "strAwayTeam": "Marseille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Marseille",
+ "strAwayTeam": "Paris FC",
+ "intHomeScore": "5",
"intRound": "2",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-29",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-23",
+ "dateEventLocal": "2025-08-23",
"strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133823",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
- "idAwayTeam": "133707",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133707",
+ "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "idAwayTeam": "135465",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16243",
- "strVenue": "Stade Louis II",
- "strCountry": "Monaco",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/kpw4z91781251453.jpg",
+ "strResult": "",
+ "idVenue": "27345",
+ "strVenue": "Orange Vélodrome",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/wiatx41756019482.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/tdj6n81781249483.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/45l9tm1754726751.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=ygjBs9T5qUc",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489473",
- "idAPIfootball": "1552744",
- "strTimestamp": "2026-08-29T15:00:00",
- "strEvent": "Rennes vs Le Mans",
- "strEventAlternate": "Le Mans @ Rennes",
- "strFilename": "French Ligue 1 2026-08-29 Rennes vs Le Mans",
+ "idEvent": "2278123",
+ "idAPIfootball": "1387712",
+ "strTimestamp": "2025-08-23T17:00:00",
+ "strEvent": "Nice vs Auxerre",
+ "strEventAlternate": "Auxerre @ Nice",
+ "strFilename": "French Ligue 1 2025-08-23 Nice vs Auxerre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Rennes",
- "strAwayTeam": "Le Mans",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nice",
+ "strAwayTeam": "Auxerre",
+ "intHomeScore": "3",
"intRound": "2",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-29",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133719",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
- "idAwayTeam": "133848",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "dateEvent": "2025-08-23",
+ "dateEventLocal": "2025-08-23",
+ "strTime": "17:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133712",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "idAwayTeam": "134788",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16104",
- "strVenue": "Roazhon Park",
+ "strResult": "",
+ "idVenue": "16106",
+ "strVenue": "Allianz Riviera",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/79c5kt1781251454.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/j4qmtq1756019486.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/e1m47f1781249119.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7t7qvc1754726755.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=Xq_bQqwVqaI",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489474",
- "idAPIfootball": "1552745",
- "strTimestamp": "2026-08-29T15:00:00",
- "strEvent": "Strasbourg vs Lens",
- "strEventAlternate": "Lens @ Strasbourg",
- "strFilename": "French Ligue 1 2026-08-29 Strasbourg vs Lens",
+ "idEvent": "2278118",
+ "idAPIfootball": "1387707",
+ "strTimestamp": "2025-08-24T15:15:00",
+ "strEvent": "Le Havre vs Lens",
+ "strEventAlternate": "Lens @ Le Havre",
+ "strFilename": "French Ligue 1 2025-08-24 Le Havre vs Lens",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Strasbourg",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Le Havre",
"strAwayTeam": "Lens",
- "intHomeScore": null,
+ "intHomeScore": "1",
"intRound": "2",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-29",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133882",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "dateEvent": "2025-08-24",
+ "dateEventLocal": "2025-08-24",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133862",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
"idAwayTeam": "133822",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18120",
- "strVenue": "Stade de la Meinau",
+ "strResult": "",
+ "idVenue": "16108",
+ "strVenue": "Stade Océane",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/enicra1756020278.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/02rk9g1756019468.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/784uyx1754808729.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vdt6311754726736.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=4hy21asPjPI",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489475",
- "idAPIfootball": "1552740",
- "strTimestamp": "2026-08-29T15:00:00",
- "strEvent": "Lorient vs Troyes",
- "strEventAlternate": "Troyes @ Lorient",
- "strFilename": "French Ligue 1 2026-08-29 Lorient vs Troyes",
+ "idEvent": "2278119",
+ "idAPIfootball": "1387708",
+ "strTimestamp": "2025-08-24T18:45:00",
+ "strEvent": "Lille vs Monaco",
+ "strEventAlternate": "Monaco @ Lille",
+ "strFilename": "French Ligue 1 2025-08-24 Lille vs Monaco",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lorient",
- "strAwayTeam": "Troyes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lille",
+ "strAwayTeam": "Monaco",
+ "intHomeScore": "1",
"intRound": "2",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-29",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133715",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
- "idAwayTeam": "134789",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
+ "dateEvent": "2025-08-24",
+ "dateEventLocal": "2025-08-24",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133711",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "idAwayTeam": "133823",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16183",
- "strVenue": "Stade du Moustoir",
+ "strResult": "",
+ "idVenue": "17390",
+ "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/yauu2p1781251784.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/dh46he1756019472.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/vbfnd61781249120.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kafok01754726740.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=azgX7A-GReM",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489476",
- "idAPIfootball": "1552739",
- "strTimestamp": "2026-08-29T15:00:00",
- "strEvent": "Brest vs Toulouse",
- "strEventAlternate": "Toulouse @ Brest",
- "strFilename": "French Ligue 1 2026-08-29 Brest vs Toulouse",
+ "idEvent": "2278120",
+ "idAPIfootball": "1387709",
+ "strTimestamp": "2025-08-24T13:00:00",
+ "strEvent": "Lorient vs Rennes",
+ "strEventAlternate": "Rennes @ Lorient",
+ "strFilename": "French Ligue 1 2025-08-24 Lorient vs Rennes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Brest",
- "strAwayTeam": "Toulouse",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lorient",
+ "strAwayTeam": "Rennes",
+ "intHomeScore": "4",
"intRound": "2",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-29",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133704",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
- "idAwayTeam": "133703",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "dateEvent": "2025-08-24",
+ "dateEventLocal": "2025-08-24",
+ "strTime": "13:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133715",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "idAwayTeam": "133719",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17543",
- "strVenue": "Stade Francis-Le Blé",
+ "strResult": "",
+ "idVenue": "16183",
+ "strVenue": "Stade du Moustoir",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/xknwts1756020079.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/n73ixp1756019475.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vpa6db1754808524.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7uoxbq1754726744.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=yey73q1uUHI",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489477",
- "idAPIfootball": "1552738",
- "strTimestamp": "2026-08-29T15:00:00",
- "strEvent": "Auxerre vs Angers",
- "strEventAlternate": "Angers @ Auxerre",
- "strFilename": "French Ligue 1 2026-08-29 Auxerre vs Angers",
+ "idEvent": "2278125",
+ "idAPIfootball": "1387714",
+ "strTimestamp": "2025-08-24T15:15:00",
+ "strEvent": "Strasbourg vs Nantes",
+ "strEventAlternate": "Nantes @ Strasbourg",
+ "strFilename": "French Ligue 1 2025-08-24 Strasbourg vs Nantes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Auxerre",
- "strAwayTeam": "Angers",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Strasbourg",
+ "strAwayTeam": "Nantes",
+ "intHomeScore": "1",
"intRound": "2",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-29",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134788",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
- "idAwayTeam": "134709",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "dateEvent": "2025-08-24",
+ "dateEventLocal": "2025-08-24",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133882",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "idAwayTeam": "133861",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16189",
- "strVenue": "Stade de l'Abbé Deschamps",
+ "strResult": "",
+ "idVenue": "18120",
+ "strVenue": "Stade de la Meinau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/84lbhm1756020535.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/i77k9a1756019493.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/egpp551754808996.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/lfar9d1754726763.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=a7AYRtRecVA",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489478",
- "idAPIfootball": "1552743",
- "strTimestamp": "2026-08-29T15:00:00",
- "strEvent": "Paris FC vs Nice",
- "strEventAlternate": "Nice @ Paris FC",
- "strFilename": "French Ligue 1 2026-08-29 Paris FC vs Nice",
+ "idEvent": "2278126",
+ "idAPIfootball": "1387715",
+ "strTimestamp": "2025-08-24T15:15:00",
+ "strEvent": "Toulouse vs Brest",
+ "strEventAlternate": "Brest @ Toulouse",
+ "strFilename": "French Ligue 1 2025-08-24 Toulouse vs Brest",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris FC",
- "strAwayTeam": "Nice",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Toulouse",
+ "strAwayTeam": "Brest",
+ "intHomeScore": "2",
"intRound": "2",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-29",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "135465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
- "idAwayTeam": "133712",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "dateEvent": "2025-08-24",
+ "dateEventLocal": "2025-08-24",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133703",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "idAwayTeam": "133704",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "23528",
- "strVenue": "Stade Jean-Bouin",
+ "strResult": "",
+ "idVenue": "18238",
+ "strVenue": "Stadium de Toulouse",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/sxjr3q1756020271.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/kbj1vl1756019496.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fjg87d1754808722.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/uwgejk1754726767.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=GEBcqdsyIjo",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489479",
- "idAPIfootball": "1552746",
- "strTimestamp": "2026-08-30T18:45:00",
- "strEvent": "Lille vs Paris Saint-Germain",
- "strEventAlternate": "Paris Saint-Germain @ Lille",
- "strFilename": "French Ligue 1 2026-08-30 Lille vs Paris Saint-Germain",
+ "idEvent": "2278129",
+ "idAPIfootball": "1387718",
+ "strTimestamp": "2025-08-29T18:45:00",
+ "strEvent": "Lens vs Brest",
+ "strEventAlternate": "Brest @ Lens",
+ "strFilename": "French Ligue 1 2025-08-29 Lens vs Brest",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lille",
- "strAwayTeam": "Paris Saint-Germain",
- "intHomeScore": null,
- "intRound": "2",
- "intAwayScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lens",
+ "strAwayTeam": "Brest",
+ "intHomeScore": "3",
+ "intRound": "3",
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-30",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-29",
+ "dateEventLocal": "2025-08-29",
"strTime": "18:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133711",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
- "idAwayTeam": "133714",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133822",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "idAwayTeam": "133704",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17390",
- "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
+ "strResult": "",
+ "idVenue": "18385",
+ "strVenue": "Stade Bollaert-Delelis",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/mno7kb1781251455.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/4zasrx1756019525.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/fw54cz1781249121.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jf4to61754726778.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=sE4OrFZdNdM",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489480",
- "idAPIfootball": "1552747",
- "strTimestamp": "2026-09-05T15:00:00",
- "strEvent": "Angers vs Rennes",
- "strEventAlternate": "Rennes @ Angers",
- "strFilename": "French Ligue 1 2026-09-05 Angers vs Rennes",
+ "idEvent": "2278130",
+ "idAPIfootball": "1387719",
+ "strTimestamp": "2025-08-30T15:00:00",
+ "strEvent": "Lorient vs Lille",
+ "strEventAlternate": "Lille @ Lorient",
+ "strFilename": "French Ligue 1 2025-08-30 Lorient vs Lille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Angers",
- "strAwayTeam": "Rennes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lorient",
+ "strAwayTeam": "Lille",
+ "intHomeScore": "1",
"intRound": "3",
- "intAwayScore": null,
+ "intAwayScore": "7",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-05",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-30",
+ "dateEventLocal": "2025-08-30",
"strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134709",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
- "idAwayTeam": "133719",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133715",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "idAwayTeam": "133711",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "29067",
- "strVenue": "Stade Raymond Kopa",
+ "strResult": "",
+ "idVenue": "16183",
+ "strVenue": "Stade du Moustoir",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/bofi6c1756019500.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ssy1te1756019528.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9qulhy1754726770.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/n7mq851754726782.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=5EO8BT035pg",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489481",
- "idAPIfootball": "1552750",
- "strTimestamp": "2026-09-05T15:00:00",
- "strEvent": "Lyon vs Auxerre",
- "strEventAlternate": "Auxerre @ Lyon",
- "strFilename": "French Ligue 1 2026-09-05 Lyon vs Auxerre",
+ "idEvent": "2278133",
+ "idAPIfootball": "1387722",
+ "strTimestamp": "2025-08-30T17:00:00",
+ "strEvent": "Nantes vs Auxerre",
+ "strEventAlternate": "Auxerre @ Nantes",
+ "strFilename": "French Ligue 1 2025-08-30 Nantes vs Auxerre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lyon",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nantes",
"strAwayTeam": "Auxerre",
- "intHomeScore": null,
+ "intHomeScore": "1",
"intRound": "3",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-05",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133713",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "dateEvent": "2025-08-30",
+ "dateEventLocal": "2025-08-30",
+ "strTime": "17:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133861",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"idAwayTeam": "134788",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16131",
- "strVenue": "Groupama Stadium",
+ "strResult": "",
+ "idVenue": "16244",
+ "strVenue": "Stade de la Beaujoire - Louis Fonteneau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/3mvnhl1756020518.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/hih31m1756019539.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vicsfq1754808960.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7k9w771754726793.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=-rEL-b16Zsg",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489482",
- "idAPIfootball": "1552751",
- "strTimestamp": "2026-09-05T15:00:00",
- "strEvent": "Marseille vs Paris FC",
- "strEventAlternate": "Paris FC @ Marseille",
- "strFilename": "French Ligue 1 2026-09-05 Marseille vs Paris FC",
+ "idEvent": "2278135",
+ "idAPIfootball": "1387724",
+ "strTimestamp": "2025-08-30T19:05:00",
+ "strEvent": "Toulouse vs Paris Saint-Germain",
+ "strEventAlternate": "Paris SG @ Toulouse",
+ "strFilename": "French Ligue 1 2025-08-30 Toulouse vs Paris Saint-Germain",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Marseille",
- "strAwayTeam": "Paris FC",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Toulouse",
+ "strAwayTeam": "Paris SG",
+ "intHomeScore": "3",
"intRound": "3",
- "intAwayScore": null,
+ "intAwayScore": "6",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-05",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133707",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
- "idAwayTeam": "135465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "dateEvent": "2025-08-30",
+ "dateEventLocal": "2025-08-30",
+ "strTime": "19:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133703",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "idAwayTeam": "133714",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "27345",
- "strVenue": "Orange Vélodrome",
+ "strResult": "",
+ "idVenue": "18238",
+ "strVenue": "Stadium de Toulouse",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/9wz35m1781251456.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/g0ckrt1756019545.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/129b4s1781249484.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/lrdiw91754726819.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=HUOu-yy9HYg",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489483",
- "idAPIfootball": "1552752",
- "strTimestamp": "2026-09-05T15:00:00",
- "strEvent": "Nice vs Le Mans",
- "strEventAlternate": "Le Mans @ Nice",
- "strFilename": "French Ligue 1 2026-09-05 Nice vs Le Mans",
+ "idEvent": "2278127",
+ "idAPIfootball": "1387716",
+ "strTimestamp": "2025-08-31T13:00:00",
+ "strEvent": "Angers vs Rennes",
+ "strEventAlternate": "Rennes @ Angers",
+ "strFilename": "French Ligue 1 2025-08-31 Angers vs Rennes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Nice",
- "strAwayTeam": "Le Mans",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Angers",
+ "strAwayTeam": "Rennes",
+ "intHomeScore": "1",
"intRound": "3",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-05",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133712",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
- "idAwayTeam": "133848",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "dateEvent": "2025-08-31",
+ "dateEventLocal": "2025-08-31",
+ "strTime": "13:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134709",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "idAwayTeam": "133719",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16106",
- "strVenue": "Allianz Riviera",
+ "strResult": "",
+ "idVenue": "29067",
+ "strVenue": "Stade Raymond Kopa",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/1nk0b61781251456.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/bofi6c1756019500.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/51hasr1781249123.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9qulhy1754726770.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=2GomqYmOs_g",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489484",
- "idAPIfootball": "1552753",
- "strTimestamp": "2026-09-05T15:00:00",
- "strEvent": "Paris Saint-Germain vs Monaco",
- "strEventAlternate": "Monaco @ Paris Saint-Germain",
- "strFilename": "French Ligue 1 2026-09-05 Paris Saint-Germain vs Monaco",
+ "idEvent": "2278128",
+ "idAPIfootball": "1387717",
+ "strTimestamp": "2025-08-31T15:15:00",
+ "strEvent": "Le Havre vs Nice",
+ "strEventAlternate": "Nice @ Le Havre",
+ "strFilename": "French Ligue 1 2025-08-31 Le Havre vs Nice",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris Saint-Germain",
- "strAwayTeam": "Monaco",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Le Havre",
+ "strAwayTeam": "Nice",
+ "intHomeScore": "3",
"intRound": "3",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-05",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133714",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
- "idAwayTeam": "133823",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "dateEvent": "2025-08-31",
+ "dateEventLocal": "2025-08-31",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133862",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "idAwayTeam": "133712",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16024",
- "strVenue": "Parc des Princes",
+ "strResult": "",
+ "idVenue": "16108",
+ "strVenue": "Stade Océane",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/yke65s1781251457.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/12ojti1756019503.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/sdiank1781249124.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/de71681754726774.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=fYcoSCOJ-VU",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489485",
- "idAPIfootball": "1552754",
- "strTimestamp": "2026-09-05T15:00:00",
- "strEvent": "Toulouse vs Lille",
- "strEventAlternate": "Lille @ Toulouse",
- "strFilename": "French Ligue 1 2026-09-05 Toulouse vs Lille",
+ "idEvent": "2278131",
+ "idAPIfootball": "1387720",
+ "strTimestamp": "2025-08-31T18:45:00",
+ "strEvent": "Lyon vs Marseille",
+ "strEventAlternate": "Marseille @ Lyon",
+ "strFilename": "French Ligue 1 2025-08-31 Lyon vs Marseille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Toulouse",
- "strAwayTeam": "Lille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lyon",
+ "strAwayTeam": "Marseille",
+ "intHomeScore": "1",
"intRound": "3",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-05",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133703",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
- "idAwayTeam": "133711",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "dateEvent": "2025-08-31",
+ "dateEventLocal": "2025-08-31",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133713",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "idAwayTeam": "133707",
+ "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18238",
- "strVenue": "Stadium de Toulouse",
+ "strResult": "",
+ "idVenue": "16131",
+ "strVenue": "Groupama Stadium",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/97d5vv1756020470.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/kjnpje1756019532.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/03fvsg1754808892.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/cvaxqb1754726785.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=Or57D78eOQs",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489486",
- "idAPIfootball": "1552755",
- "strTimestamp": "2026-09-05T15:00:00",
- "strEvent": "Troyes vs Strasbourg",
- "strEventAlternate": "Strasbourg @ Troyes",
- "strFilename": "French Ligue 1 2026-09-05 Troyes vs Strasbourg",
+ "idEvent": "2278132",
+ "idAPIfootball": "1387721",
+ "strTimestamp": "2025-08-31T15:15:00",
+ "strEvent": "Monaco vs Strasbourg",
+ "strEventAlternate": "Strasbourg @ Monaco",
+ "strFilename": "French Ligue 1 2025-08-31 Monaco vs Strasbourg",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Troyes",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Monaco",
"strAwayTeam": "Strasbourg",
- "intHomeScore": null,
+ "intHomeScore": "3",
"intRound": "3",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-05",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134789",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
+ "dateEvent": "2025-08-31",
+ "dateEventLocal": "2025-08-31",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133823",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"idAwayTeam": "133882",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16192",
- "strVenue": "Stade de l'Aube",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/aus7qk1781251785.jpg",
+ "strResult": "",
+ "idVenue": "16243",
+ "strVenue": "Stade Louis II",
+ "strCountry": "Monaco",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/5yh9zt1756019535.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/hg3x7x1781249125.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2a86q61754726789.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=atVI7JMdOI8",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489487",
- "idAPIfootball": "1552748",
- "strTimestamp": "2026-09-05T15:00:00",
- "strEvent": "Le Havre vs Brest",
- "strEventAlternate": "Brest @ Le Havre",
- "strFilename": "French Ligue 1 2026-09-05 Le Havre vs Brest",
+ "idEvent": "2278134",
+ "idAPIfootball": "1387723",
+ "strTimestamp": "2025-08-31T15:15:00",
+ "strEvent": "Paris FC vs Metz",
+ "strEventAlternate": "Metz @ Paris FC",
+ "strFilename": "French Ligue 1 2025-08-31 Paris FC vs Metz",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Havre",
- "strAwayTeam": "Brest",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris FC",
+ "strAwayTeam": "Metz",
+ "intHomeScore": "3",
"intRound": "3",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-05",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133862",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
- "idAwayTeam": "133704",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "dateEvent": "2025-08-31",
+ "dateEventLocal": "2025-08-31",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "135465",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "idAwayTeam": "133883",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16108",
- "strVenue": "Stade Océane",
+ "strResult": "",
+ "idVenue": "23528",
+ "strVenue": "Stade Jean-Bouin",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/njuez71756019754.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/i8x4zp1756019542.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/nu7edi1754727063.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hyl3g31754808458.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=HEALKSAL7Wg",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489488",
- "idAPIfootball": "1552749",
- "strTimestamp": "2026-09-05T15:00:00",
- "strEvent": "Lens vs Lorient",
- "strEventAlternate": "Lorient @ Lens",
- "strFilename": "French Ligue 1 2026-09-05 Lens vs Lorient",
+ "idEvent": "2278139",
+ "idAPIfootball": "1387728",
+ "strTimestamp": "2025-09-12T18:45:00",
+ "strEvent": "Marseille vs Lorient",
+ "strEventAlternate": "Lorient @ Marseille",
+ "strFilename": "French Ligue 1 2025-09-12 Marseille vs Lorient",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lens",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Marseille",
"strAwayTeam": "Lorient",
- "intHomeScore": null,
- "intRound": "3",
- "intAwayScore": null,
+ "intHomeScore": "4",
+ "intRound": "4",
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-05",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133822",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "dateEvent": "2025-09-12",
+ "dateEventLocal": "2025-09-12",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133707",
+ "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"idAwayTeam": "133715",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18385",
- "strVenue": "Stade Bollaert-Delelis",
+ "strResult": "",
+ "idVenue": "27345",
+ "strVenue": "Orange Vélodrome",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/akesbu1756019793.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/759b1x1756019559.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4hf8lz1754727104.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/nqiisl1754726834.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=WkFJgDlIFsA",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489489",
- "idAPIfootball": "1552760",
- "strTimestamp": "2026-09-12T15:00:00",
- "strEvent": "Lille vs Troyes",
- "strEventAlternate": "Troyes @ Lille",
- "strFilename": "French Ligue 1 2026-09-12 Lille vs Troyes",
+ "idEvent": "2278136",
+ "idAPIfootball": "1387725",
+ "strTimestamp": "2025-09-13T19:05:00",
+ "strEvent": "Auxerre vs Monaco",
+ "strEventAlternate": "Monaco @ Auxerre",
+ "strFilename": "French Ligue 1 2025-09-13 Auxerre vs Monaco",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lille",
- "strAwayTeam": "Troyes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Auxerre",
+ "strAwayTeam": "Monaco",
+ "intHomeScore": "1",
"intRound": "4",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-12",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133711",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
- "idAwayTeam": "134789",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
+ "dateEvent": "2025-09-13",
+ "dateEventLocal": "2025-09-13",
+ "strTime": "19:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "134788",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "idAwayTeam": "133823",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17390",
- "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
+ "strResult": "",
+ "idVenue": "16189",
+ "strVenue": "Stade de l'Abbé Deschamps",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/kb4cnx1781251785.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/e5gj291756019549.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/84xtmo1781249126.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/i3i0hg1754726823.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=mVrNyvS2f9Y",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489490",
- "idAPIfootball": "1552763",
- "strTimestamp": "2026-09-12T15:00:00",
- "strEvent": "Rennes vs Marseille",
- "strEventAlternate": "Marseille @ Rennes",
- "strFilename": "French Ligue 1 2026-09-12 Rennes vs Marseille",
+ "idEvent": "2278141",
+ "idAPIfootball": "1387730",
+ "strTimestamp": "2025-09-13T15:00:00",
+ "strEvent": "Nice vs Nantes",
+ "strEventAlternate": "Nantes @ Nice",
+ "strFilename": "French Ligue 1 2025-09-13 Nice vs Nantes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Rennes",
- "strAwayTeam": "Marseille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nice",
+ "strAwayTeam": "Nantes",
+ "intHomeScore": "1",
"intRound": "4",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-12",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-13",
+ "dateEventLocal": "2025-09-13",
"strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133719",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
- "idAwayTeam": "133707",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133712",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "idAwayTeam": "133861",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16104",
- "strVenue": "Roazhon Park",
+ "strResult": "",
+ "idVenue": "16106",
+ "strVenue": "Allianz Riviera",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/xk13qj1781251458.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/iubvtw1756019566.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/2r04tz1781249484.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/b6zjad1754726841.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=6wGsssGq0zs",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489491",
- "idAPIfootball": "1552764",
- "strTimestamp": "2026-09-12T15:00:00",
- "strEvent": "Strasbourg vs Monaco",
- "strEventAlternate": "Monaco @ Strasbourg",
- "strFilename": "French Ligue 1 2026-09-12 Strasbourg vs Monaco",
+ "idEvent": "2278137",
+ "idAPIfootball": "1387726",
+ "strTimestamp": "2025-09-14T15:15:00",
+ "strEvent": "Brest vs Paris FC",
+ "strEventAlternate": "Paris FC @ Brest",
+ "strFilename": "French Ligue 1 2025-09-14 Brest vs Paris FC",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Strasbourg",
- "strAwayTeam": "Monaco",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Brest",
+ "strAwayTeam": "Paris FC",
+ "intHomeScore": "1",
"intRound": "4",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-12",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133882",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
- "idAwayTeam": "133823",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "dateEvent": "2025-09-14",
+ "dateEventLocal": "2025-09-14",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133704",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "idAwayTeam": "135465",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18120",
- "strVenue": "Stade de la Meinau",
+ "strResult": "",
+ "idVenue": "17543",
+ "strVenue": "Stade Francis-Le Blé",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/et5lfh1756020644.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/nplhw11756019552.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5b8zue1754809107.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/p70hye1754726826.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=Zkw6wNbmctg",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489492",
- "idAPIfootball": "1552761",
- "strTimestamp": "2026-09-12T15:00:00",
- "strEvent": "Lorient vs Toulouse",
- "strEventAlternate": "Toulouse @ Lorient",
- "strFilename": "French Ligue 1 2026-09-12 Lorient vs Toulouse",
+ "idEvent": "2278138",
+ "idAPIfootball": "1387727",
+ "strTimestamp": "2025-09-14T13:00:00",
+ "strEvent": "Lille vs Toulouse",
+ "strEventAlternate": "Toulouse @ Lille",
+ "strFilename": "French Ligue 1 2025-09-14 Lille vs Toulouse",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lorient",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lille",
"strAwayTeam": "Toulouse",
- "intHomeScore": null,
+ "intHomeScore": "2",
"intRound": "4",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-12",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133715",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "dateEvent": "2025-09-14",
+ "dateEventLocal": "2025-09-14",
+ "strTime": "13:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133711",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"idAwayTeam": "133703",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16183",
- "strVenue": "Stade du Moustoir",
+ "strResult": "",
+ "idVenue": "17390",
+ "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/kq6pnr1756019826.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/u43s551756019556.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6lisj91754727139.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/v4ottq1754726830.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=R91vE3jgNTw",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489493",
- "idAPIfootball": "1552757",
- "strTimestamp": "2026-09-12T15:00:00",
- "strEvent": "Brest vs Paris Saint-Germain",
- "strEventAlternate": "Paris Saint-Germain @ Brest",
- "strFilename": "French Ligue 1 2026-09-12 Brest vs Paris Saint-Germain",
+ "idEvent": "2278140",
+ "idAPIfootball": "1387729",
+ "strTimestamp": "2025-09-14T15:15:00",
+ "strEvent": "Metz vs Angers",
+ "strEventAlternate": "Angers @ Metz",
+ "strFilename": "French Ligue 1 2025-09-14 Metz vs Angers",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Brest",
- "strAwayTeam": "Paris Saint-Germain",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Metz",
+ "strAwayTeam": "Angers",
+ "intHomeScore": "1",
"intRound": "4",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-12",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133704",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
- "idAwayTeam": "133714",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "dateEvent": "2025-09-14",
+ "dateEventLocal": "2025-09-14",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133883",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
+ "idAwayTeam": "134709",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17543",
- "strVenue": "Stade Francis-Le Blé",
+ "strResult": "",
+ "idVenue": "16242",
+ "strVenue": "Stade Saint-Symphorien",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/h3otvp1781251459.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/8ukkz51756019563.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/r12hnb1781249128.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/29c7uo1754726838.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=Ghk1oW5ZJEw",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489494",
- "idAPIfootball": "1552756",
- "strTimestamp": "2026-09-12T15:00:00",
- "strEvent": "Auxerre vs Nice",
- "strEventAlternate": "Nice @ Auxerre",
- "strFilename": "French Ligue 1 2026-09-12 Auxerre vs Nice",
+ "idEvent": "2278142",
+ "idAPIfootball": "1387731",
+ "strTimestamp": "2025-09-14T15:15:00",
+ "strEvent": "Paris Saint-Germain vs Lens",
+ "strEventAlternate": "Lens @ Paris SG",
+ "strFilename": "French Ligue 1 2025-09-14 Paris Saint-Germain vs Lens",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Auxerre",
- "strAwayTeam": "Nice",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris SG",
+ "strAwayTeam": "Lens",
+ "intHomeScore": "2",
"intRound": "4",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-12",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134788",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
- "idAwayTeam": "133712",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "dateEvent": "2025-09-14",
+ "dateEventLocal": "2025-09-14",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133714",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "idAwayTeam": "133822",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16189",
- "strVenue": "Stade de l'Abbé Deschamps",
+ "strResult": "",
+ "idVenue": "16024",
+ "strVenue": "Parc des Princes",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/z7elsb1756020570.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/lr8dvr1756019570.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/i25dem1754809032.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/83047s1754726845.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=_IkG68KRncE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489495",
- "idAPIfootball": "1552758",
- "strTimestamp": "2026-09-12T15:00:00",
- "strEvent": "Le Havre vs Angers",
- "strEventAlternate": "Angers @ Le Havre",
- "strFilename": "French Ligue 1 2026-09-12 Le Havre vs Angers",
+ "idEvent": "2278143",
+ "idAPIfootball": "1387732",
+ "strTimestamp": "2025-09-14T18:45:00",
+ "strEvent": "Rennes vs Lyon",
+ "strEventAlternate": "Lyon @ Rennes",
+ "strFilename": "French Ligue 1 2025-09-14 Rennes vs Lyon",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Havre",
- "strAwayTeam": "Angers",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Rennes",
+ "strAwayTeam": "Lyon",
+ "intHomeScore": "3",
"intRound": "4",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-12",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133862",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
- "idAwayTeam": "134709",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "dateEvent": "2025-09-14",
+ "dateEventLocal": "2025-09-14",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133719",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "idAwayTeam": "133713",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16108",
- "strVenue": "Stade Océane",
+ "strResult": "",
+ "idVenue": "16104",
+ "strVenue": "Roazhon Park",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/5rtm371756019998.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/v3nmv91756019573.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7oz69m1754727307.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2mrg8e1754726849.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=wDvJyK9NMZE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489496",
- "idAPIfootball": "1552762",
- "strTimestamp": "2026-09-12T15:00:00",
- "strEvent": "Paris FC vs Lyon",
- "strEventAlternate": "Lyon @ Paris FC",
- "strFilename": "French Ligue 1 2026-09-12 Paris FC vs Lyon",
+ "idEvent": "2278144",
+ "idAPIfootball": "1387733",
+ "strTimestamp": "2025-09-14T15:15:00",
+ "strEvent": "Strasbourg vs Le Havre",
+ "strEventAlternate": "Le Havre @ Strasbourg",
+ "strFilename": "French Ligue 1 2025-09-14 Strasbourg vs Le Havre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris FC",
- "strAwayTeam": "Lyon",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Strasbourg",
+ "strAwayTeam": "Le Havre",
+ "intHomeScore": "1",
"intRound": "4",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-12",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "135465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
- "idAwayTeam": "133713",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "dateEvent": "2025-09-14",
+ "dateEventLocal": "2025-09-14",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133882",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "idAwayTeam": "133862",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "23528",
- "strVenue": "Stade Jean-Bouin",
+ "strResult": "",
+ "idVenue": "18120",
+ "strVenue": "Stade de la Meinau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/7q13xr1756019776.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/5x0ojr1756019576.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/t6t4bm1754727085.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vm0xoz1754726853.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=W4Xu3pBlzww",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489497",
- "idAPIfootball": "1552759",
- "strTimestamp": "2026-09-12T15:00:00",
- "strEvent": "Le Mans vs Lens",
- "strEventAlternate": "Lens @ Le Mans",
- "strFilename": "French Ligue 1 2026-09-12 Le Mans vs Lens",
+ "idEvent": "2278149",
+ "idAPIfootball": "1387738",
+ "strTimestamp": "2025-09-19T18:45:00",
+ "strEvent": "Lyon vs Angers",
+ "strEventAlternate": "Angers @ Lyon",
+ "strFilename": "French Ligue 1 2025-09-19 Lyon vs Angers",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Mans",
- "strAwayTeam": "Lens",
- "intHomeScore": null,
- "intRound": "4",
- "intAwayScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lyon",
+ "strAwayTeam": "Angers",
+ "intHomeScore": "1",
+ "intRound": "5",
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-12",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133848",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
- "idAwayTeam": "133822",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "dateEvent": "2025-09-19",
+ "dateEventLocal": "2025-09-19",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133713",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "idAwayTeam": "134709",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "26610",
- "strVenue": "Stade Marie-Marvingt",
+ "strResult": "",
+ "idVenue": "16131",
+ "strVenue": "Groupama Stadium",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/dq7uf51781251459.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/4jt1b71756019594.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/3k18nv1781249128.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/baxoug1754726872.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=NaKUh9uM-Fw",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489498",
- "idAPIfootball": "1552765",
- "strTimestamp": "2026-09-19T15:00:00",
- "strEvent": "Angers vs Troyes",
- "strEventAlternate": "Troyes @ Angers",
- "strFilename": "French Ligue 1 2026-09-19 Angers vs Troyes",
+ "idEvent": "2278146",
+ "idAPIfootball": "1387735",
+ "strTimestamp": "2025-09-20T17:00:00",
+ "strEvent": "Brest vs Nice",
+ "strEventAlternate": "Nice @ Brest",
+ "strFilename": "French Ligue 1 2025-09-20 Brest vs Nice",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Angers",
- "strAwayTeam": "Troyes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Brest",
+ "strAwayTeam": "Nice",
+ "intHomeScore": "4",
"intRound": "5",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-19",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134709",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
- "idAwayTeam": "134789",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
+ "dateEvent": "2025-09-20",
+ "dateEventLocal": "2025-09-20",
+ "strTime": "17:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133704",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "idAwayTeam": "133712",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "29067",
- "strVenue": "Stade Raymond Kopa",
+ "strResult": "",
+ "idVenue": "17543",
+ "strVenue": "Stade Francis-Le Blé",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/nzy0a31781251786.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/pkh9n31756019583.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/bv964t1781249129.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zpk6n71754726861.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=6cGBpjPZy1c",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489499",
- "idAPIfootball": "1552768",
- "strTimestamp": "2026-09-19T15:00:00",
- "strEvent": "Lyon vs Rennes",
- "strEventAlternate": "Rennes @ Lyon",
- "strFilename": "French Ligue 1 2026-09-19 Lyon vs Rennes",
+ "idEvent": "2278148",
+ "idAPIfootball": "1387737",
+ "strTimestamp": "2025-09-20T19:05:00",
+ "strEvent": "Lens vs Lille",
+ "strEventAlternate": "Lille @ Lens",
+ "strFilename": "French Ligue 1 2025-09-20 Lens vs Lille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lyon",
- "strAwayTeam": "Rennes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lens",
+ "strAwayTeam": "Lille",
+ "intHomeScore": "3",
"intRound": "5",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-19",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133713",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
- "idAwayTeam": "133719",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "dateEvent": "2025-09-20",
+ "dateEventLocal": "2025-09-20",
+ "strTime": "19:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133822",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "idAwayTeam": "133711",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16131",
- "strVenue": "Groupama Stadium",
+ "strResult": "",
+ "idVenue": "18385",
+ "strVenue": "Stade Bollaert-Delelis",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/4utj9y1756020542.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/qyali41756019590.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/poljil1754809003.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xrxggh1754726868.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=dTzU5BkjBlA",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489500",
- "idAPIfootball": "1552770",
- "strTimestamp": "2026-09-19T15:00:00",
- "strEvent": "Nice vs Lille",
- "strEventAlternate": "Lille @ Nice",
- "strFilename": "French Ligue 1 2026-09-19 Nice vs Lille",
+ "idEvent": "2278152",
+ "idAPIfootball": "1387741",
+ "strTimestamp": "2025-09-20T15:00:00",
+ "strEvent": "Nantes vs Rennes",
+ "strEventAlternate": "Rennes @ Nantes",
+ "strFilename": "French Ligue 1 2025-09-20 Nantes vs Rennes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Nice",
- "strAwayTeam": "Lille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nantes",
+ "strAwayTeam": "Rennes",
+ "intHomeScore": "2",
"intRound": "5",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-19",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-20",
+ "dateEventLocal": "2025-09-20",
"strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133712",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
- "idAwayTeam": "133711",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133861",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
+ "idAwayTeam": "133719",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16106",
- "strVenue": "Allianz Riviera",
+ "strResult": "",
+ "idVenue": "16244",
+ "strVenue": "Stade de la Beaujoire - Louis Fonteneau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/40hoxw1756019772.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/1ntd8c1756019604.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ouptvu1754727081.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9buzac1754726883.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=lCdt9pb1aag",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489501",
- "idAPIfootball": "1552769",
- "strTimestamp": "2026-09-19T15:00:00",
- "strEvent": "Monaco vs Lens",
- "strEventAlternate": "Lens @ Monaco",
- "strFilename": "French Ligue 1 2026-09-19 Monaco vs Lens",
+ "idEvent": "2278145",
+ "idAPIfootball": "1387734",
+ "strTimestamp": "2025-09-21T15:15:00",
+ "strEvent": "Auxerre vs Toulouse",
+ "strEventAlternate": "Toulouse @ Auxerre",
+ "strFilename": "French Ligue 1 2025-09-21 Auxerre vs Toulouse",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Monaco",
- "strAwayTeam": "Lens",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Auxerre",
+ "strAwayTeam": "Toulouse",
+ "intHomeScore": "1",
"intRound": "5",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-19",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133823",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
- "idAwayTeam": "133822",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "dateEvent": "2025-09-21",
+ "dateEventLocal": "2025-09-21",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134788",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "idAwayTeam": "133703",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16243",
- "strVenue": "Stade Louis II",
- "strCountry": "Monaco",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/wurs321756019840.jpg",
+ "strResult": "",
+ "idVenue": "16189",
+ "strVenue": "Stade de l'Abbé Deschamps",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/m9xj211756019580.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3konal1754727154.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/t6011c1754726857.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=Pm94Dw3X59w",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489502",
- "idAPIfootball": "1552772",
- "strTimestamp": "2026-09-19T15:00:00",
- "strEvent": "Toulouse vs Le Havre",
- "strEventAlternate": "Le Havre @ Toulouse",
- "strFilename": "French Ligue 1 2026-09-19 Toulouse vs Le Havre",
+ "idEvent": "2278147",
+ "idAPIfootball": "1387736",
+ "strTimestamp": "2025-09-21T15:15:00",
+ "strEvent": "Le Havre vs Lorient",
+ "strEventAlternate": "Lorient @ Le Havre",
+ "strFilename": "French Ligue 1 2025-09-21 Le Havre vs Lorient",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Toulouse",
- "strAwayTeam": "Le Havre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Le Havre",
+ "strAwayTeam": "Lorient",
+ "intHomeScore": "1",
"intRound": "5",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-19",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133703",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
- "idAwayTeam": "133862",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "dateEvent": "2025-09-21",
+ "dateEventLocal": "2025-09-21",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133862",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "idAwayTeam": "133715",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18238",
- "strVenue": "Stadium de Toulouse",
+ "strResult": "",
+ "idVenue": "16108",
+ "strVenue": "Stade Océane",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/amdu411756019815.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/wbmard1756019587.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7l0yuh1754727127.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jt0ac11754726865.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=dKev60T7LA0",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489503",
- "idAPIfootball": "1552766",
- "strTimestamp": "2026-09-19T15:00:00",
- "strEvent": "Auxerre vs Brest",
- "strEventAlternate": "Brest @ Auxerre",
- "strFilename": "French Ligue 1 2026-09-19 Auxerre vs Brest",
+ "idEvent": "2278151",
+ "idAPIfootball": "1387740",
+ "strTimestamp": "2025-09-21T15:15:00",
+ "strEvent": "Monaco vs Metz",
+ "strEventAlternate": "Metz @ Monaco",
+ "strFilename": "French Ligue 1 2025-09-21 Monaco vs Metz",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Auxerre",
- "strAwayTeam": "Brest",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Monaco",
+ "strAwayTeam": "Metz",
+ "intHomeScore": "5",
"intRound": "5",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-19",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134788",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
- "idAwayTeam": "133704",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "dateEvent": "2025-09-21",
+ "dateEventLocal": "2025-09-21",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133823",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "idAwayTeam": "133883",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16189",
- "strVenue": "Stade de l'Abbé Deschamps",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/oanzrd1756020361.jpg",
+ "strResult": "",
+ "idVenue": "16243",
+ "strVenue": "Stade Louis II",
+ "strCountry": "Monaco",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/3jk6uv1756019601.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yge7l11754808798.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/wtn64m1754726880.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=m_ARS1hd0kU",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489504",
- "idAPIfootball": "1552771",
- "strTimestamp": "2026-09-19T15:00:00",
+ "idEvent": "2278153",
+ "idAPIfootball": "1387742",
+ "strTimestamp": "2025-09-21T13:00:00",
"strEvent": "Paris FC vs Strasbourg",
"strEventAlternate": "Strasbourg @ Paris FC",
- "strFilename": "French Ligue 1 2026-09-19 Paris FC vs Strasbourg",
+ "strFilename": "French Ligue 1 2025-09-21 Paris FC vs Strasbourg",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Paris FC",
"strAwayTeam": "Strasbourg",
- "intHomeScore": null,
+ "intHomeScore": "2",
"intRound": "5",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-19",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2025-09-21",
+ "dateEventLocal": "2025-09-21",
+ "strTime": "13:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
"idHomeTeam": "135465",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
"idAwayTeam": "133882",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "23528",
"strVenue": "Stade Jean-Bouin",
"strCountry": "France",
- "strCity": null,
+ "strCity": "",
"strPoster": "https://r2.thesportsdb.com/images/media/event/poster/y5c7fr1756019608.jpg",
"strSquare": "",
"strFanart": null,
"strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/97pvkg1754726887.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2489505",
- "idAPIfootball": "1552767",
- "strTimestamp": "2026-09-19T15:00:00",
- "strEvent": "Le Mans vs Lorient",
- "strEventAlternate": "Lorient @ Le Mans",
- "strFilename": "French Ligue 1 2026-09-19 Le Mans vs Lorient",
- "strSport": "Soccer",
- "idLeague": "4334",
- "strLeague": "French Ligue 1",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Mans",
- "strAwayTeam": "Lorient",
- "intHomeScore": null,
- "intRound": "5",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-19",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133848",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
- "idAwayTeam": "133715",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "26610",
- "strVenue": "Stade Marie-Marvingt",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/7gp0lw1781251460.jpg",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/8pu40b1781249130.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=grwGSXH4wSk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489506",
- "idAPIfootball": "1552773",
- "strTimestamp": "2026-09-20T18:45:00",
+ "idEvent": "2278150",
+ "idAPIfootball": "1387739",
+ "strTimestamp": "2025-09-22T18:00:00",
"strEvent": "Marseille vs Paris Saint-Germain",
- "strEventAlternate": "Paris Saint-Germain @ Marseille",
- "strFilename": "French Ligue 1 2026-09-20 Marseille vs Paris Saint-Germain",
+ "strEventAlternate": "Paris SG @ Marseille",
+ "strFilename": "French Ligue 1 2025-09-22 Marseille vs Paris Saint-Germain",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Marseille",
- "strAwayTeam": "Paris Saint-Germain",
- "intHomeScore": null,
+ "strAwayTeam": "Paris SG",
+ "intHomeScore": "1",
"intRound": "5",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-20",
- "dateEventLocal": null,
- "strTime": "18:45:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2025-09-22",
+ "dateEventLocal": "2025-09-22",
+ "strTime": "18:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
"idHomeTeam": "133707",
"strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"idAwayTeam": "133714",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "27345",
"strVenue": "Orange Vélodrome",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/alqoie1781251461.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/gj1cot1756019597.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/bt6wcm1781249485.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/84ujyi1754726876.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=llZMm26NzNw",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489507",
- "idAPIfootball": "1552776",
- "strTimestamp": "2026-10-10T15:00:00",
- "strEvent": "Lille vs Le Havre",
- "strEventAlternate": "Le Havre @ Lille",
- "strFilename": "French Ligue 1 2026-10-10 Lille vs Le Havre",
+ "idEvent": "2278161",
+ "idAPIfootball": "1387750",
+ "strTimestamp": "2025-09-26T18:45:00",
+ "strEvent": "Strasbourg vs Marseille",
+ "strEventAlternate": "Marseille @ Strasbourg",
+ "strFilename": "French Ligue 1 2025-09-26 Strasbourg vs Marseille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lille",
- "strAwayTeam": "Le Havre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Strasbourg",
+ "strAwayTeam": "Marseille",
+ "intHomeScore": "1",
"intRound": "6",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-10",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133711",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
- "idAwayTeam": "133862",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "dateEvent": "2025-09-26",
+ "dateEventLocal": "2025-09-26",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133882",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "idAwayTeam": "133707",
+ "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17390",
- "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
+ "strResult": "",
+ "idVenue": "18120",
+ "strVenue": "Stade de la Meinau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/h41roy1756020539.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/1nzhx21756019636.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ay26sx1754808999.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/forrya1754726917.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=h2sLaGJV7Ws",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489508",
- "idAPIfootball": "1552779",
- "strTimestamp": "2026-10-10T15:00:00",
- "strEvent": "Nice vs Strasbourg",
- "strEventAlternate": "Strasbourg @ Nice",
- "strFilename": "French Ligue 1 2026-10-10 Nice vs Strasbourg",
+ "idEvent": "2278156",
+ "idAPIfootball": "1387745",
+ "strTimestamp": "2025-09-27T15:00:00",
+ "strEvent": "Lorient vs Monaco",
+ "strEventAlternate": "Monaco @ Lorient",
+ "strFilename": "French Ligue 1 2025-09-27 Lorient vs Monaco",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Nice",
- "strAwayTeam": "Strasbourg",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lorient",
+ "strAwayTeam": "Monaco",
+ "intHomeScore": "3",
"intRound": "6",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-10",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-27",
+ "dateEventLocal": "2025-09-27",
"strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133712",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
- "idAwayTeam": "133882",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133715",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "idAwayTeam": "133823",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16106",
- "strVenue": "Allianz Riviera",
+ "strResult": "",
+ "idVenue": "16183",
+ "strVenue": "Stade du Moustoir",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/3o289m1756020015.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/dpd70c1756019618.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xuf2rf1754808477.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mct0sg1754726898.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=Lc-7ihcggvM",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489509",
- "idAPIfootball": "1552780",
- "strTimestamp": "2026-10-10T15:00:00",
- "strEvent": "Paris Saint-Germain vs Le Mans",
- "strEventAlternate": "Le Mans @ Paris Saint-Germain",
- "strFilename": "French Ligue 1 2026-10-10 Paris Saint-Germain vs Le Mans",
+ "idEvent": "2278159",
+ "idAPIfootball": "1387748",
+ "strTimestamp": "2025-09-27T19:05:00",
+ "strEvent": "Paris Saint-Germain vs Auxerre",
+ "strEventAlternate": "Auxerre @ Paris SG",
+ "strFilename": "French Ligue 1 2025-09-27 Paris Saint-Germain vs Auxerre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris Saint-Germain",
- "strAwayTeam": "Le Mans",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris SG",
+ "strAwayTeam": "Auxerre",
+ "intHomeScore": "2",
"intRound": "6",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-10",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2025-09-27",
+ "dateEventLocal": "2025-09-27",
+ "strTime": "19:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
"idHomeTeam": "133714",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
- "idAwayTeam": "133848",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "idAwayTeam": "134788",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "16024",
"strVenue": "Parc des Princes",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/ygqnpr1781251462.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/oaye271756019629.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/jelaf21781249132.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6r00ub1754726910.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=H1eXIn1mFSI",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489510",
- "idAPIfootball": "1552778",
- "strTimestamp": "2026-10-10T15:00:00",
- "strEvent": "Monaco vs Toulouse",
- "strEventAlternate": "Toulouse @ Monaco",
- "strFilename": "French Ligue 1 2026-10-10 Monaco vs Toulouse",
+ "idEvent": "2278162",
+ "idAPIfootball": "1387751",
+ "strTimestamp": "2025-09-27T17:00:00",
+ "strEvent": "Toulouse vs Nantes",
+ "strEventAlternate": "Nantes @ Toulouse",
+ "strFilename": "French Ligue 1 2025-09-27 Toulouse vs Nantes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Monaco",
- "strAwayTeam": "Toulouse",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Toulouse",
+ "strAwayTeam": "Nantes",
+ "intHomeScore": "2",
"intRound": "6",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-10",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133823",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
- "idAwayTeam": "133703",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "dateEvent": "2025-09-27",
+ "dateEventLocal": "2025-09-27",
+ "strTime": "17:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133703",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "idAwayTeam": "133861",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16243",
- "strVenue": "Stade Louis II",
- "strCountry": "Monaco",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/2z257w1756019744.jpg",
+ "strResult": "",
+ "idVenue": "18238",
+ "strVenue": "Stadium de Toulouse",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/5wzbo51756019639.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2m2zhs1754727033.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/cz04sa1754726921.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=xKAufHJfalM",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489511",
- "idAPIfootball": "1552781",
- "strTimestamp": "2026-10-10T15:00:00",
- "strEvent": "Rennes vs Auxerre",
- "strEventAlternate": "Auxerre @ Rennes",
- "strFilename": "French Ligue 1 2026-10-10 Rennes vs Auxerre",
+ "idEvent": "2278154",
+ "idAPIfootball": "1387743",
+ "strTimestamp": "2025-09-28T15:15:00",
+ "strEvent": "Angers vs Brest",
+ "strEventAlternate": "Brest @ Angers",
+ "strFilename": "French Ligue 1 2025-09-28 Angers vs Brest",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Rennes",
- "strAwayTeam": "Auxerre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Angers",
+ "strAwayTeam": "Brest",
+ "intHomeScore": "0",
"intRound": "6",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-10",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133719",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
- "idAwayTeam": "134788",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "dateEvent": "2025-09-28",
+ "dateEventLocal": "2025-09-28",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134709",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "idAwayTeam": "133704",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16104",
- "strVenue": "Roazhon Park",
+ "strResult": "",
+ "idVenue": "29067",
+ "strVenue": "Stade Raymond Kopa",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/bneph41756019698.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/npnew21756019611.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vrys6j1754726985.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3wi87j1754726891.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=bcxuNwFDa1Q",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489512",
- "idAPIfootball": "1552777",
- "strTimestamp": "2026-10-10T15:00:00",
- "strEvent": "Lorient vs Paris FC",
- "strEventAlternate": "Paris FC @ Lorient",
- "strFilename": "French Ligue 1 2026-10-10 Lorient vs Paris FC",
+ "idEvent": "2278155",
+ "idAPIfootball": "1387744",
+ "strTimestamp": "2025-09-28T15:15:00",
+ "strEvent": "Lille vs Lyon",
+ "strEventAlternate": "Lyon @ Lille",
+ "strFilename": "French Ligue 1 2025-09-28 Lille vs Lyon",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lorient",
- "strAwayTeam": "Paris FC",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lille",
+ "strAwayTeam": "Lyon",
+ "intHomeScore": "0",
"intRound": "6",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-10",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133715",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
- "idAwayTeam": "135465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "dateEvent": "2025-09-28",
+ "dateEventLocal": "2025-09-28",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133711",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "idAwayTeam": "133713",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16183",
- "strVenue": "Stade du Moustoir",
+ "strResult": "",
+ "idVenue": "17390",
+ "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ergo9t1756020425.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/6c5cdi1756019615.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1jrhkt1754808845.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xktc801754726895.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=anKuIwR8nSM",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489513",
- "idAPIfootball": "1552774",
- "strTimestamp": "2026-10-10T15:00:00",
- "strEvent": "Brest vs Angers",
- "strEventAlternate": "Angers @ Brest",
- "strFilename": "French Ligue 1 2026-10-10 Brest vs Angers",
+ "idEvent": "2278157",
+ "idAPIfootball": "1387746",
+ "strTimestamp": "2025-09-28T15:15:00",
+ "strEvent": "Metz vs Le Havre",
+ "strEventAlternate": "Le Havre @ Metz",
+ "strFilename": "French Ligue 1 2025-09-28 Metz vs Le Havre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Brest",
- "strAwayTeam": "Angers",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Metz",
+ "strAwayTeam": "Le Havre",
+ "intHomeScore": "0",
"intRound": "6",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-10",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133704",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
- "idAwayTeam": "134709",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "dateEvent": "2025-09-28",
+ "dateEventLocal": "2025-09-28",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133883",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
+ "idAwayTeam": "133862",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17543",
- "strVenue": "Stade Francis-Le Blé",
+ "strResult": "",
+ "idVenue": "16242",
+ "strVenue": "Stade Saint-Symphorien",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ca82lw1756020616.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/z1vug01756019622.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fvdjvf1754809078.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6qcdbi1754726902.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=jEHnQUm51E4",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489514",
- "idAPIfootball": "1552782",
- "strTimestamp": "2026-10-10T15:00:00",
- "strEvent": "Troyes vs Marseille",
- "strEventAlternate": "Marseille @ Troyes",
- "strFilename": "French Ligue 1 2026-10-10 Troyes vs Marseille",
+ "idEvent": "2278158",
+ "idAPIfootball": "1387747",
+ "strTimestamp": "2025-09-28T13:00:00",
+ "strEvent": "Nice vs Paris FC",
+ "strEventAlternate": "Paris FC @ Nice",
+ "strFilename": "French Ligue 1 2025-09-28 Nice vs Paris FC",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Troyes",
- "strAwayTeam": "Marseille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nice",
+ "strAwayTeam": "Paris FC",
+ "intHomeScore": "1",
"intRound": "6",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-10",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134789",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
- "idAwayTeam": "133707",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "dateEvent": "2025-09-28",
+ "dateEventLocal": "2025-09-28",
+ "strTime": "13:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133712",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "idAwayTeam": "135465",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16192",
- "strVenue": "Stade de l'Aube",
+ "strResult": "",
+ "idVenue": "16106",
+ "strVenue": "Allianz Riviera",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/z0shse1781251787.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/y7yopv1756019625.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/3csvsz1781249486.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kca6yl1754726906.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=xxghkwhmI9U",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489515",
- "idAPIfootball": "1552775",
- "strTimestamp": "2026-10-10T15:00:00",
- "strEvent": "Lens vs Lyon",
- "strEventAlternate": "Lyon @ Lens",
- "strFilename": "French Ligue 1 2026-10-10 Lens vs Lyon",
+ "idEvent": "2278160",
+ "idAPIfootball": "1387749",
+ "strTimestamp": "2025-09-28T18:45:00",
+ "strEvent": "Rennes vs Lens",
+ "strEventAlternate": "Lens @ Rennes",
+ "strFilename": "French Ligue 1 2025-09-28 Rennes vs Lens",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lens",
- "strAwayTeam": "Lyon",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Rennes",
+ "strAwayTeam": "Lens",
+ "intHomeScore": "0",
"intRound": "6",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-10",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133822",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
- "idAwayTeam": "133713",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "dateEvent": "2025-09-28",
+ "dateEventLocal": "2025-09-28",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133719",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "idAwayTeam": "133822",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18385",
- "strVenue": "Stade Bollaert-Delelis",
+ "strResult": "",
+ "idVenue": "16104",
+ "strVenue": "Roazhon Park",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/4dmbee1756019447.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ob3d8w1756019632.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/grfy9q1754726714.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bqtbrt1754726913.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=VglemkzQ7Yk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489516",
- "idAPIfootball": "1552783",
- "strTimestamp": "2026-10-17T15:00:00",
- "strEvent": "Angers vs Marseille",
- "strEventAlternate": "Marseille @ Angers",
- "strFilename": "French Ligue 1 2026-10-17 Angers vs Marseille",
+ "idEvent": "2278170",
+ "idAPIfootball": "1387759",
+ "strTimestamp": "2025-10-03T18:45:00",
+ "strEvent": "Paris FC vs Lorient",
+ "strEventAlternate": "Lorient @ Paris FC",
+ "strFilename": "French Ligue 1 2025-10-03 Paris FC vs Lorient",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Angers",
- "strAwayTeam": "Marseille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris FC",
+ "strAwayTeam": "Lorient",
+ "intHomeScore": "2",
"intRound": "7",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-17",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134709",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
- "idAwayTeam": "133707",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "dateEvent": "2025-10-03",
+ "dateEventLocal": "2025-10-03",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "135465",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "idAwayTeam": "133715",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "29067",
- "strVenue": "Stade Raymond Kopa",
+ "strResult": "",
+ "idVenue": "23528",
+ "strVenue": "Stade Jean-Bouin",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/rt6lf01781251463.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/jzp3wx1756019667.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/7edgj41781249487.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/rxh69v1754726951.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=csxX7rrPCe4",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489517",
- "idAPIfootball": "1552786",
- "strTimestamp": "2026-10-17T15:00:00",
- "strEvent": "Lille vs Brest",
- "strEventAlternate": "Brest @ Lille",
- "strFilename": "French Ligue 1 2026-10-17 Lille vs Brest",
+ "idEvent": "2278163",
+ "idAPIfootball": "1387752",
+ "strTimestamp": "2025-10-04T19:05:00",
+ "strEvent": "Auxerre vs Lens",
+ "strEventAlternate": "Lens @ Auxerre",
+ "strFilename": "French Ligue 1 2025-10-04 Auxerre vs Lens",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lille",
- "strAwayTeam": "Brest",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Auxerre",
+ "strAwayTeam": "Lens",
+ "intHomeScore": "1",
"intRound": "7",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-17",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133711",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
- "idAwayTeam": "133704",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "dateEvent": "2025-10-04",
+ "dateEventLocal": "2025-10-04",
+ "strTime": "19:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "134788",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "idAwayTeam": "133822",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17390",
- "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
+ "strResult": "",
+ "idVenue": "16189",
+ "strVenue": "Stade de l'Abbé Deschamps",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/b11hz11756020190.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/x5aqv91756019642.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/g2qz021754808621.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/q7rg4g1754726925.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=EkgQUdkmgyg",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489518",
- "idAPIfootball": "1552788",
- "strTimestamp": "2026-10-17T15:00:00",
- "strEvent": "Lyon vs Nice",
- "strEventAlternate": "Nice @ Lyon",
- "strFilename": "French Ligue 1 2026-10-17 Lyon vs Nice",
+ "idEvent": "2278164",
+ "idAPIfootball": "1387753",
+ "strTimestamp": "2025-10-04T17:00:00",
+ "strEvent": "Brest vs Nantes",
+ "strEventAlternate": "Nantes @ Brest",
+ "strFilename": "French Ligue 1 2025-10-04 Brest vs Nantes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lyon",
- "strAwayTeam": "Nice",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Brest",
+ "strAwayTeam": "Nantes",
+ "intHomeScore": "0",
"intRound": "7",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-17",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133713",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
- "idAwayTeam": "133712",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "dateEvent": "2025-10-04",
+ "dateEventLocal": "2025-10-04",
+ "strTime": "17:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133704",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "idAwayTeam": "133861",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16131",
- "strVenue": "Groupama Stadium",
+ "strResult": "",
+ "idVenue": "17543",
+ "strVenue": "Stade Francis-Le Blé",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/jwsof81756020197.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/7318qm1756019646.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0vn4sk1754808628.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7zqkfy1754726928.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=ROKk1tuZ7sw",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489519",
- "idAPIfootball": "1552790",
- "strTimestamp": "2026-10-17T15:00:00",
- "strEvent": "Strasbourg vs Paris Saint-Germain",
- "strEventAlternate": "Paris Saint-Germain @ Strasbourg",
- "strFilename": "French Ligue 1 2026-10-17 Strasbourg vs Paris Saint-Germain",
+ "idEvent": "2278168",
+ "idAPIfootball": "1387757",
+ "strTimestamp": "2025-10-04T15:00:00",
+ "strEvent": "Metz vs Marseille",
+ "strEventAlternate": "Marseille @ Metz",
+ "strFilename": "French Ligue 1 2025-10-04 Metz vs Marseille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Strasbourg",
- "strAwayTeam": "Paris Saint-Germain",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Metz",
+ "strAwayTeam": "Marseille",
+ "intHomeScore": "0",
"intRound": "7",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-17",
- "dateEventLocal": null,
+ "dateEvent": "2025-10-04",
+ "dateEventLocal": "2025-10-04",
"strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133882",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
- "idAwayTeam": "133714",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133883",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
+ "idAwayTeam": "133707",
+ "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18120",
- "strVenue": "Stade de la Meinau",
+ "strResult": "",
+ "idVenue": "16242",
+ "strVenue": "Stade Saint-Symphorien",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/npkvkb1781251464.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/hzje321756019660.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/0lcwcq1781249135.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pt8fjg1754726944.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=9IB0gIcq71c",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489520",
- "idAPIfootball": "1552787",
- "strTimestamp": "2026-10-17T15:00:00",
- "strEvent": "Lorient vs Monaco",
- "strEventAlternate": "Monaco @ Lorient",
- "strFilename": "French Ligue 1 2026-10-17 Lorient vs Monaco",
+ "idEvent": "2278165",
+ "idAPIfootball": "1387754",
+ "strTimestamp": "2025-10-05T15:15:00",
+ "strEvent": "Le Havre vs Rennes",
+ "strEventAlternate": "Rennes @ Le Havre",
+ "strFilename": "French Ligue 1 2025-10-05 Le Havre vs Rennes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lorient",
- "strAwayTeam": "Monaco",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Le Havre",
+ "strAwayTeam": "Rennes",
+ "intHomeScore": "2",
"intRound": "7",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-17",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133715",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
- "idAwayTeam": "133823",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "dateEvent": "2025-10-05",
+ "dateEventLocal": "2025-10-05",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133862",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "idAwayTeam": "133719",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16183",
- "strVenue": "Stade du Moustoir",
+ "strResult": "",
+ "idVenue": "16108",
+ "strVenue": "Stade Océane",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/dpd70c1756019618.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/by351t1756019649.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mct0sg1754726898.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jqs71k1754726932.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=01EWpnakOkE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489521",
- "idAPIfootball": "1552791",
- "strTimestamp": "2026-10-17T15:00:00",
- "strEvent": "Troyes vs Lens",
- "strEventAlternate": "Lens @ Troyes",
- "strFilename": "French Ligue 1 2026-10-17 Troyes vs Lens",
+ "idEvent": "2278166",
+ "idAPIfootball": "1387755",
+ "strTimestamp": "2025-10-05T18:45:00",
+ "strEvent": "Lille vs Paris Saint-Germain",
+ "strEventAlternate": "Paris SG @ Lille",
+ "strFilename": "French Ligue 1 2025-10-05 Lille vs Paris Saint-Germain",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Troyes",
- "strAwayTeam": "Lens",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lille",
+ "strAwayTeam": "Paris SG",
+ "intHomeScore": "1",
"intRound": "7",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-17",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134789",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
- "idAwayTeam": "133822",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "dateEvent": "2025-10-05",
+ "dateEventLocal": "2025-10-05",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133711",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "idAwayTeam": "133714",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16192",
- "strVenue": "Stade de l'Aube",
+ "strResult": "",
+ "idVenue": "17390",
+ "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/njvrzl1781251788.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/qrzykn1756019653.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/8lzg3n1781249136.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9o8ckq1754726936.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=7nupFXI0-gU",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489522",
- "idAPIfootball": "1552784",
- "strTimestamp": "2026-10-17T15:00:00",
- "strEvent": "Le Havre vs Auxerre",
- "strEventAlternate": "Auxerre @ Le Havre",
- "strFilename": "French Ligue 1 2026-10-17 Le Havre vs Auxerre",
+ "idEvent": "2278167",
+ "idAPIfootball": "1387756",
+ "strTimestamp": "2025-10-05T13:00:00",
+ "strEvent": "Lyon vs Toulouse",
+ "strEventAlternate": "Toulouse @ Lyon",
+ "strFilename": "French Ligue 1 2025-10-05 Lyon vs Toulouse",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Havre",
- "strAwayTeam": "Auxerre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lyon",
+ "strAwayTeam": "Toulouse",
+ "intHomeScore": "1",
"intRound": "7",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-17",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133862",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
- "idAwayTeam": "134788",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "dateEvent": "2025-10-05",
+ "dateEventLocal": "2025-10-05",
+ "strTime": "13:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133713",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "idAwayTeam": "133703",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16108",
- "strVenue": "Stade Océane",
+ "strResult": "",
+ "idVenue": "16131",
+ "strVenue": "Groupama Stadium",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ohr9341756020418.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/tugqvj1756019656.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/oa4c2n1754808838.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5ta91z1754726940.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=D7wOTqOefco",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489523",
- "idAPIfootball": "1552789",
- "strTimestamp": "2026-10-17T15:00:00",
- "strEvent": "Paris FC vs Rennes",
- "strEventAlternate": "Rennes @ Paris FC",
- "strFilename": "French Ligue 1 2026-10-17 Paris FC vs Rennes",
+ "idEvent": "2278169",
+ "idAPIfootball": "1387758",
+ "strTimestamp": "2025-10-05T15:15:00",
+ "strEvent": "Monaco vs Nice",
+ "strEventAlternate": "Nice @ Monaco",
+ "strFilename": "French Ligue 1 2025-10-05 Monaco vs Nice",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris FC",
- "strAwayTeam": "Rennes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Monaco",
+ "strAwayTeam": "Nice",
+ "intHomeScore": "2",
"intRound": "7",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-17",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "135465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
- "idAwayTeam": "133719",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "dateEvent": "2025-10-05",
+ "dateEventLocal": "2025-10-05",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133823",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "idAwayTeam": "133712",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "23528",
- "strVenue": "Stade Jean-Bouin",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/g10sc81756019843.jpg",
+ "strResult": "",
+ "idVenue": "16243",
+ "strVenue": "Stade Louis II",
+ "strCountry": "Monaco",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/t48aax1756019663.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bss2k91754727157.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/cm4v3m1754726947.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=5HsWm87dm_w",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489524",
- "idAPIfootball": "1552785",
- "strTimestamp": "2026-10-17T15:00:00",
- "strEvent": "Le Mans vs Toulouse",
- "strEventAlternate": "Toulouse @ Le Mans",
- "strFilename": "French Ligue 1 2026-10-17 Le Mans vs Toulouse",
+ "idEvent": "2278171",
+ "idAPIfootball": "1387760",
+ "strTimestamp": "2025-10-05T15:15:00",
+ "strEvent": "Strasbourg vs Angers",
+ "strEventAlternate": "Angers @ Strasbourg",
+ "strFilename": "French Ligue 1 2025-10-05 Strasbourg vs Angers",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Mans",
- "strAwayTeam": "Toulouse",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Strasbourg",
+ "strAwayTeam": "Angers",
+ "intHomeScore": "5",
"intRound": "7",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-17",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133848",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
- "idAwayTeam": "133703",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "dateEvent": "2025-10-05",
+ "dateEventLocal": "2025-10-05",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133882",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "idAwayTeam": "134709",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "26610",
- "strVenue": "Stade Marie-Marvingt",
+ "strResult": "",
+ "idVenue": "18120",
+ "strVenue": "Stade de la Meinau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/bpv54t1781251466.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/n302dw1756019670.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/bfcdh61781249137.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4tgc1u1754726955.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=ix-p8rdNtbc",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489525",
- "idAPIfootball": "1552792",
- "strTimestamp": "2026-10-24T15:00:00",
- "strEvent": "Angers vs Lorient",
- "strEventAlternate": "Lorient @ Angers",
- "strFilename": "French Ligue 1 2026-10-24 Angers vs Lorient",
+ "idEvent": "2278178",
+ "idAPIfootball": "1387767",
+ "strTimestamp": "2025-10-17T18:45:00",
+ "strEvent": "Paris Saint-Germain vs Strasbourg",
+ "strEventAlternate": "Strasbourg @ Paris SG",
+ "strFilename": "French Ligue 1 2025-10-17 Paris Saint-Germain vs Strasbourg",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Angers",
- "strAwayTeam": "Lorient",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris SG",
+ "strAwayTeam": "Strasbourg",
+ "intHomeScore": "3",
"intRound": "8",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-24",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134709",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
- "idAwayTeam": "133715",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "dateEvent": "2025-10-17",
+ "dateEventLocal": "2025-10-17",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133714",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "idAwayTeam": "133882",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "29067",
- "strVenue": "Stade Raymond Kopa",
+ "strResult": "",
+ "idVenue": "16024",
+ "strVenue": "Parc des Princes",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/p7puhq1756019705.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/1s0haa1756019695.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/f6lbvo1754808462.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/tqhmrw1754726981.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=6DvZzVrnXLw",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489526",
- "idAPIfootball": "1552796",
- "strTimestamp": "2026-10-24T15:00:00",
- "strEvent": "Marseille vs Le Havre",
- "strEventAlternate": "Le Havre @ Marseille",
- "strFilename": "French Ligue 1 2026-10-24 Marseille vs Le Havre",
+ "idEvent": "2278172",
+ "idAPIfootball": "1387761",
+ "strTimestamp": "2025-10-18T17:00:00",
+ "strEvent": "Angers vs Monaco",
+ "strEventAlternate": "Monaco @ Angers",
+ "strFilename": "French Ligue 1 2025-10-18 Angers vs Monaco",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Marseille",
- "strAwayTeam": "Le Havre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Angers",
+ "strAwayTeam": "Monaco",
+ "intHomeScore": "1",
"intRound": "8",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-24",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133707",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
- "idAwayTeam": "133862",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "27345",
- "strVenue": "Orange Vélodrome",
+ "dateEvent": "2025-10-18",
+ "dateEventLocal": "2025-10-18",
+ "strTime": "17:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134709",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "idAwayTeam": "133823",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "intScore": null,
+ "intScoreVotes": null,
+ "strResult": "",
+ "idVenue": "29067",
+ "strVenue": "Stade Raymond Kopa",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/206isc1781251467.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/qbxo5e1756019674.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/wmfs6k1781249488.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zdvhxs1754726959.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=ne4yYQVPu4w",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489527",
- "idAPIfootball": "1552797",
- "strTimestamp": "2026-10-24T15:00:00",
- "strEvent": "Monaco vs Lille",
- "strEventAlternate": "Lille @ Monaco",
- "strFilename": "French Ligue 1 2026-10-24 Monaco vs Lille",
+ "idEvent": "2278175",
+ "idAPIfootball": "1387764",
+ "strTimestamp": "2025-10-18T19:05:00",
+ "strEvent": "Marseille vs Le Havre",
+ "strEventAlternate": "Le Havre @ Marseille",
+ "strFilename": "French Ligue 1 2025-10-18 Marseille vs Le Havre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Monaco",
- "strAwayTeam": "Lille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Marseille",
+ "strAwayTeam": "Le Havre",
+ "intHomeScore": "6",
"intRound": "8",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-24",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133823",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
- "idAwayTeam": "133711",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "dateEvent": "2025-10-18",
+ "dateEventLocal": "2025-10-18",
+ "strTime": "19:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133707",
+ "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "idAwayTeam": "133862",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16243",
- "strVenue": "Stade Louis II",
- "strCountry": "Monaco",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/9ergpc1756020602.jpg",
+ "strResult": "",
+ "idVenue": "27345",
+ "strVenue": "Orange Vélodrome",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/n8y7uu1756019684.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/sirvfw1754809064.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/gxo4gh1754726970.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=c12w_L1brBM",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489528",
- "idAPIfootball": "1552798",
- "strTimestamp": "2026-10-24T15:00:00",
- "strEvent": "Rennes vs Strasbourg",
- "strEventAlternate": "Strasbourg @ Rennes",
- "strFilename": "French Ligue 1 2026-10-24 Rennes vs Strasbourg",
+ "idEvent": "2278177",
+ "idAPIfootball": "1387766",
+ "strTimestamp": "2025-10-18T15:00:00",
+ "strEvent": "Nice vs Lyon",
+ "strEventAlternate": "Lyon @ Nice",
+ "strFilename": "French Ligue 1 2025-10-18 Nice vs Lyon",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Rennes",
- "strAwayTeam": "Strasbourg",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nice",
+ "strAwayTeam": "Lyon",
+ "intHomeScore": "3",
"intRound": "8",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-24",
- "dateEventLocal": null,
+ "dateEvent": "2025-10-18",
+ "dateEventLocal": "2025-10-18",
"strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133719",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
- "idAwayTeam": "133882",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133712",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "idAwayTeam": "133713",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16104",
- "strVenue": "Roazhon Park",
+ "strResult": "",
+ "idVenue": "16106",
+ "strVenue": "Allianz Riviera",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/28k9sk1756019812.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/9jlyxk1756019691.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/68a55z1754727123.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vm32nw1754726978.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=-xz_pDor55Y",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489529",
- "idAPIfootball": "1552799",
- "strTimestamp": "2026-10-24T15:00:00",
- "strEvent": "Toulouse vs Troyes",
- "strEventAlternate": "Troyes @ Toulouse",
- "strFilename": "French Ligue 1 2026-10-24 Toulouse vs Troyes",
+ "idEvent": "2278173",
+ "idAPIfootball": "1387762",
+ "strTimestamp": "2025-10-19T13:00:00",
+ "strEvent": "Lens vs Paris FC",
+ "strEventAlternate": "Paris FC @ Lens",
+ "strFilename": "French Ligue 1 2025-10-19 Lens vs Paris FC",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Toulouse",
- "strAwayTeam": "Troyes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lens",
+ "strAwayTeam": "Paris FC",
+ "intHomeScore": "2",
"intRound": "8",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-24",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133703",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
- "idAwayTeam": "134789",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
+ "dateEvent": "2025-10-19",
+ "dateEventLocal": "2025-10-19",
+ "strTime": "13:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133822",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "idAwayTeam": "135465",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18238",
- "strVenue": "Stadium de Toulouse",
+ "strResult": "",
+ "idVenue": "18385",
+ "strVenue": "Stade Bollaert-Delelis",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/t1pcj51781251788.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/goit9q1756019677.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/eqdryf1781249138.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/u7dw9n1754726962.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=gahN3tz02Oc",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489530",
- "idAPIfootball": "1552794",
- "strTimestamp": "2026-10-24T15:00:00",
- "strEvent": "Brest vs Nice",
- "strEventAlternate": "Nice @ Brest",
- "strFilename": "French Ligue 1 2026-10-24 Brest vs Nice",
+ "idEvent": "2278174",
+ "idAPIfootball": "1387763",
+ "strTimestamp": "2025-10-19T15:15:00",
+ "strEvent": "Lorient vs Brest",
+ "strEventAlternate": "Brest @ Lorient",
+ "strFilename": "French Ligue 1 2025-10-19 Lorient vs Brest",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Brest",
- "strAwayTeam": "Nice",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lorient",
+ "strAwayTeam": "Brest",
+ "intHomeScore": "3",
"intRound": "8",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-24",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133704",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
- "idAwayTeam": "133712",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "dateEvent": "2025-10-19",
+ "dateEventLocal": "2025-10-19",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133715",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "idAwayTeam": "133704",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17543",
- "strVenue": "Stade Francis-Le Blé",
+ "strResult": "",
+ "idVenue": "16183",
+ "strVenue": "Stade du Moustoir",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/pkh9n31756019583.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/4veswd1756019681.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zpk6n71754726861.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/maj2xt1754726966.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=GEE-Ix8Op3I",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489531",
- "idAPIfootball": "1552793",
- "strTimestamp": "2026-10-24T15:00:00",
- "strEvent": "Auxerre vs Le Mans",
- "strEventAlternate": "Le Mans @ Auxerre",
- "strFilename": "French Ligue 1 2026-10-24 Auxerre vs Le Mans",
+ "idEvent": "2278176",
+ "idAPIfootball": "1387765",
+ "strTimestamp": "2025-10-19T18:45:00",
+ "strEvent": "Nantes vs Lille",
+ "strEventAlternate": "Lille @ Nantes",
+ "strFilename": "French Ligue 1 2025-10-19 Nantes vs Lille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Auxerre",
- "strAwayTeam": "Le Mans",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nantes",
+ "strAwayTeam": "Lille",
+ "intHomeScore": "0",
"intRound": "8",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-24",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134788",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
- "idAwayTeam": "133848",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "dateEvent": "2025-10-19",
+ "dateEventLocal": "2025-10-19",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133861",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
+ "idAwayTeam": "133711",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16189",
- "strVenue": "Stade de l'Abbé Deschamps",
+ "strResult": "",
+ "idVenue": "16244",
+ "strVenue": "Stade de la Beaujoire - Louis Fonteneau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/sy1zlf1781251468.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/h7uufh1756019688.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/138svc1781249139.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/avzp6t1754726974.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=KChAtcGlgOQ",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489532",
- "idAPIfootball": "1552795",
- "strTimestamp": "2026-10-24T15:00:00",
- "strEvent": "Lens vs Paris FC",
- "strEventAlternate": "Paris FC @ Lens",
- "strFilename": "French Ligue 1 2026-10-24 Lens vs Paris FC",
+ "idEvent": "2278179",
+ "idAPIfootball": "1387768",
+ "strTimestamp": "2025-10-19T15:15:00",
+ "strEvent": "Rennes vs Auxerre",
+ "strEventAlternate": "Auxerre @ Rennes",
+ "strFilename": "French Ligue 1 2025-10-19 Rennes vs Auxerre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lens",
- "strAwayTeam": "Paris FC",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Rennes",
+ "strAwayTeam": "Auxerre",
+ "intHomeScore": "2",
"intRound": "8",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-24",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133822",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
- "idAwayTeam": "135465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "dateEvent": "2025-10-19",
+ "dateEventLocal": "2025-10-19",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133719",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "idAwayTeam": "134788",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18385",
- "strVenue": "Stade Bollaert-Delelis",
+ "strResult": "",
+ "idVenue": "16104",
+ "strVenue": "Roazhon Park",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/goit9q1756019677.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/bneph41756019698.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/u7dw9n1754726962.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vrys6j1754726985.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=17utLICYkXU",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489533",
- "idAPIfootball": "1552800",
- "strTimestamp": "2026-10-25T19:45:00",
- "strEvent": "Paris Saint-Germain vs Lyon",
- "strEventAlternate": "Lyon @ Paris Saint-Germain",
- "strFilename": "French Ligue 1 2026-10-25 Paris Saint-Germain vs Lyon",
+ "idEvent": "2278180",
+ "idAPIfootball": "1387769",
+ "strTimestamp": "2025-10-19T15:15:00",
+ "strEvent": "Toulouse vs Metz",
+ "strEventAlternate": "Metz @ Toulouse",
+ "strFilename": "French Ligue 1 2025-10-19 Toulouse vs Metz",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris Saint-Germain",
- "strAwayTeam": "Lyon",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Toulouse",
+ "strAwayTeam": "Metz",
+ "intHomeScore": "4",
"intRound": "8",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-25",
- "dateEventLocal": null,
- "strTime": "19:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133714",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
- "idAwayTeam": "133713",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "dateEvent": "2025-10-19",
+ "dateEventLocal": "2025-10-19",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133703",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "idAwayTeam": "133883",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16024",
- "strVenue": "Parc des Princes",
+ "strResult": "",
+ "idVenue": "18238",
+ "strVenue": "Stadium de Toulouse",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/yi7vti1781251469.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/9a8kd41756019702.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/fwgncy1781249140.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/n5erla1754726989.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=5uyJnf3y8U0",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489534",
- "idAPIfootball": "1552802",
- "strTimestamp": "2026-10-31T16:00:00",
- "strEvent": "Lille vs Lens",
- "strEventAlternate": "Lens @ Lille",
- "strFilename": "French Ligue 1 2026-10-31 Lille vs Lens",
+ "idEvent": "2278188",
+ "idAPIfootball": "1387777",
+ "strTimestamp": "2025-10-24T18:45:00",
+ "strEvent": "Paris FC vs Nantes",
+ "strEventAlternate": "Nantes @ Paris FC",
+ "strFilename": "French Ligue 1 2025-10-24 Paris FC vs Nantes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lille",
- "strAwayTeam": "Lens",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris FC",
+ "strAwayTeam": "Nantes",
+ "intHomeScore": "1",
"intRound": "9",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-31",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133711",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
- "idAwayTeam": "133822",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "dateEvent": "2025-10-24",
+ "dateEventLocal": "2025-10-24",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "135465",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "idAwayTeam": "133861",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17390",
- "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
+ "strResult": "",
+ "idVenue": "23528",
+ "strVenue": "Stade Jean-Bouin",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/3rcbid1756020421.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/6t8li71756019748.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5r9bim1754808841.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2k47dh1754727037.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=ctAiJT_qQa4",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489535",
- "idAPIfootball": "1552804",
- "strTimestamp": "2026-10-31T16:00:00",
- "strEvent": "Lyon vs Angers",
- "strEventAlternate": "Angers @ Lyon",
- "strFilename": "French Ligue 1 2026-10-31 Lyon vs Angers",
+ "idEvent": "2278183",
+ "idAPIfootball": "1387772",
+ "strTimestamp": "2025-10-25T15:00:00",
+ "strEvent": "Brest vs Paris Saint-Germain",
+ "strEventAlternate": "Paris SG @ Brest",
+ "strFilename": "French Ligue 1 2025-10-25 Brest vs Paris Saint-Germain",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lyon",
- "strAwayTeam": "Angers",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Brest",
+ "strAwayTeam": "Paris SG",
+ "intHomeScore": "0",
"intRound": "9",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-31",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133713",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
- "idAwayTeam": "134709",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "dateEvent": "2025-10-25",
+ "dateEventLocal": "2025-10-25",
+ "strTime": "15:00:00",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133704",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "idAwayTeam": "133714",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16131",
- "strVenue": "Groupama Stadium",
+ "strResult": "",
+ "idVenue": "17543",
+ "strVenue": "Stade Francis-Le Blé",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/4jt1b71756019594.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/uazoq31756019712.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/baxoug1754726872.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/g6t0zm1754727018.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=Qf3UI2Lffyk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489536",
- "idAPIfootball": "1552805",
- "strTimestamp": "2026-10-31T16:00:00",
- "strEvent": "Marseille vs Toulouse",
- "strEventAlternate": "Toulouse @ Marseille",
- "strFilename": "French Ligue 1 2026-10-31 Marseille vs Toulouse",
+ "idEvent": "2278184",
+ "idAPIfootball": "1387773",
+ "strTimestamp": "2025-10-25T19:05:00",
+ "strEvent": "Lens vs Marseille",
+ "strEventAlternate": "Marseille @ Lens",
+ "strFilename": "French Ligue 1 2025-10-25 Lens vs Marseille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Marseille",
- "strAwayTeam": "Toulouse",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lens",
+ "strAwayTeam": "Marseille",
+ "intHomeScore": "2",
"intRound": "9",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-31",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133707",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
- "idAwayTeam": "133703",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "dateEvent": "2025-10-25",
+ "dateEventLocal": "2025-10-25",
+ "strTime": "19:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133822",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "idAwayTeam": "133707",
+ "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "27345",
- "strVenue": "Orange Vélodrome",
+ "strResult": "",
+ "idVenue": "18385",
+ "strVenue": "Stade Bollaert-Delelis",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/5wo5vt1781251469.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/546c2t1756019716.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/xjm1pf1781249489.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7qvhdi1754727022.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=6Ee_SP4Jyqk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489537",
- "idAPIfootball": "1552806",
- "strTimestamp": "2026-10-31T16:00:00",
- "strEvent": "Nice vs Rennes",
- "strEventAlternate": "Rennes @ Nice",
- "strFilename": "French Ligue 1 2026-10-31 Nice vs Rennes",
+ "idEvent": "2278187",
+ "idAPIfootball": "1387776",
+ "strTimestamp": "2025-10-25T17:00:00",
+ "strEvent": "Monaco vs Toulouse",
+ "strEventAlternate": "Toulouse @ Monaco",
+ "strFilename": "French Ligue 1 2025-10-25 Monaco vs Toulouse",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Nice",
- "strAwayTeam": "Rennes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Monaco",
+ "strAwayTeam": "Toulouse",
+ "intHomeScore": "1",
"intRound": "9",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-31",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133712",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
- "idAwayTeam": "133719",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "dateEvent": "2025-10-25",
+ "dateEventLocal": "2025-10-25",
+ "strTime": "17:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133823",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "idAwayTeam": "133703",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16106",
- "strVenue": "Allianz Riviera",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ad0jh61756020302.jpg",
+ "strResult": "",
+ "idVenue": "16243",
+ "strVenue": "Stade Louis II",
+ "strCountry": "Monaco",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/2z257w1756019744.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/05zr2m1754808755.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2m2zhs1754727033.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=bjT5UESeKEY",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489538",
- "idAPIfootball": "1552808",
- "strTimestamp": "2026-10-31T16:00:00",
- "strEvent": "Strasbourg vs Auxerre",
- "strEventAlternate": "Auxerre @ Strasbourg",
- "strFilename": "French Ligue 1 2026-10-31 Strasbourg vs Auxerre",
+ "idEvent": "2278181",
+ "idAPIfootball": "1387770",
+ "strTimestamp": "2025-10-26T16:15:00",
+ "strEvent": "Angers vs Lorient",
+ "strEventAlternate": "Lorient @ Angers",
+ "strFilename": "French Ligue 1 2025-10-26 Angers vs Lorient",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Strasbourg",
- "strAwayTeam": "Auxerre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Angers",
+ "strAwayTeam": "Lorient",
+ "intHomeScore": "2",
"intRound": "9",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-31",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133882",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
- "idAwayTeam": "134788",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
- "intScore": null,
+ "dateEvent": "2025-10-26",
+ "dateEventLocal": "2025-10-26",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134709",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "idAwayTeam": "133715",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18120",
- "strVenue": "Stade de la Meinau",
+ "strResult": "",
+ "idVenue": "29067",
+ "strVenue": "Stade Raymond Kopa",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/9uyg2r1756019779.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/p7puhq1756019705.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8nl6571754727089.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/f6lbvo1754808462.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=XT8-4fv_fsQ",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489539",
- "idAPIfootball": "1552803",
- "strTimestamp": "2026-10-31T16:00:00",
- "strEvent": "Lorient vs Brest",
- "strEventAlternate": "Brest @ Lorient",
- "strFilename": "French Ligue 1 2026-10-31 Lorient vs Brest",
+ "idEvent": "2278182",
+ "idAPIfootball": "1387771",
+ "strTimestamp": "2025-10-26T16:15:00",
+ "strEvent": "Auxerre vs Le Havre",
+ "strEventAlternate": "Le Havre @ Auxerre",
+ "strFilename": "French Ligue 1 2025-10-26 Auxerre vs Le Havre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lorient",
- "strAwayTeam": "Brest",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Auxerre",
+ "strAwayTeam": "Le Havre",
+ "intHomeScore": "0",
"intRound": "9",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-31",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133715",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
- "idAwayTeam": "133704",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "dateEvent": "2025-10-26",
+ "dateEventLocal": "2025-10-26",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134788",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "idAwayTeam": "133862",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16183",
- "strVenue": "Stade du Moustoir",
+ "strResult": "",
+ "idVenue": "16189",
+ "strVenue": "Stade de l'Abbé Deschamps",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/4veswd1756019681.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/1f4no41756019709.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/maj2xt1754726966.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/p0zm2i1754727015.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=pXtvYiWVJn4",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489540",
- "idAPIfootball": "1552809",
- "strTimestamp": "2026-10-31T16:00:00",
- "strEvent": "Troyes vs Le Mans",
- "strEventAlternate": "Le Mans @ Troyes",
- "strFilename": "French Ligue 1 2026-10-31 Troyes vs Le Mans",
+ "idEvent": "2278185",
+ "idAPIfootball": "1387774",
+ "strTimestamp": "2025-10-26T14:00:00",
+ "strEvent": "Lille vs Metz",
+ "strEventAlternate": "Metz @ Lille",
+ "strFilename": "French Ligue 1 2025-10-26 Lille vs Metz",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Troyes",
- "strAwayTeam": "Le Mans",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lille",
+ "strAwayTeam": "Metz",
+ "intHomeScore": "6",
"intRound": "9",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-31",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134789",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
- "idAwayTeam": "133848",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "dateEvent": "2025-10-26",
+ "dateEventLocal": "2025-10-26",
+ "strTime": "14:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133711",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "idAwayTeam": "133883",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16192",
- "strVenue": "Stade de l'Aube",
+ "strResult": "",
+ "idVenue": "17390",
+ "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/2ts7891781251789.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/xfzvbr1756019719.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/rizp7t1781249142.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6noe5k1754727026.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=y6R7jxajiT8",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489541",
- "idAPIfootball": "1552801",
- "strTimestamp": "2026-10-31T16:00:00",
- "strEvent": "Le Havre vs Paris Saint-Germain",
- "strEventAlternate": "Paris Saint-Germain @ Le Havre",
- "strFilename": "French Ligue 1 2026-10-31 Le Havre vs Paris Saint-Germain",
+ "idEvent": "2278186",
+ "idAPIfootball": "1387775",
+ "strTimestamp": "2025-10-26T19:45:00",
+ "strEvent": "Lyon vs Strasbourg",
+ "strEventAlternate": "Strasbourg @ Lyon",
+ "strFilename": "French Ligue 1 2025-10-26 Lyon vs Strasbourg",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Havre",
- "strAwayTeam": "Paris Saint-Germain",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lyon",
+ "strAwayTeam": "Strasbourg",
+ "intHomeScore": "2",
"intRound": "9",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-31",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133862",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
- "idAwayTeam": "133714",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "dateEvent": "2025-10-26",
+ "dateEventLocal": "2025-10-26",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133713",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "idAwayTeam": "133882",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16108",
- "strVenue": "Stade Océane",
+ "strResult": "",
+ "idVenue": "16131",
+ "strVenue": "Groupama Stadium",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/hvw18h1781251471.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/1qptep1756019740.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/el6tlc1781249143.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/eq64yn1754727029.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=pgVcZI6nYqE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489542",
- "idAPIfootball": "1552807",
- "strTimestamp": "2026-10-31T16:00:00",
- "strEvent": "Paris FC vs Monaco",
- "strEventAlternate": "Monaco @ Paris FC",
- "strFilename": "French Ligue 1 2026-10-31 Paris FC vs Monaco",
+ "idEvent": "2278189",
+ "idAPIfootball": "1387778",
+ "strTimestamp": "2025-10-26T16:15:00",
+ "strEvent": "Rennes vs Nice",
+ "strEventAlternate": "Nice @ Rennes",
+ "strFilename": "French Ligue 1 2025-10-26 Rennes vs Nice",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris FC",
- "strAwayTeam": "Monaco",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Rennes",
+ "strAwayTeam": "Nice",
+ "intHomeScore": "1",
"intRound": "9",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-31",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "135465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
- "idAwayTeam": "133823",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "dateEvent": "2025-10-26",
+ "dateEventLocal": "2025-10-26",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133719",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "idAwayTeam": "133712",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "23528",
- "strVenue": "Stade Jean-Bouin",
+ "strResult": "",
+ "idVenue": "16104",
+ "strVenue": "Roazhon Park",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/82ws701756020463.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/iins7a1756019751.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vl1h3i1754808884.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/h0rd8e1754808466.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=rma0DmsamrQ",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489543",
- "idAPIfootball": "1552810",
- "strTimestamp": "2026-11-07T16:00:00",
- "strEvent": "Angers vs Nice",
- "strEventAlternate": "Nice @ Angers",
- "strFilename": "French Ligue 1 2026-11-07 Angers vs Nice",
+ "idEvent": "2278190",
+ "idAPIfootball": "1387779",
+ "strTimestamp": "2025-10-29T18:00:00",
+ "strEvent": "Le Havre vs Brest",
+ "strEventAlternate": "Brest @ Le Havre",
+ "strFilename": "French Ligue 1 2025-10-29 Le Havre vs Brest",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Angers",
- "strAwayTeam": "Nice",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Le Havre",
+ "strAwayTeam": "Brest",
+ "intHomeScore": "1",
"intRound": "10",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-07",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134709",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
- "idAwayTeam": "133712",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "dateEvent": "2025-10-29",
+ "dateEventLocal": "2025-10-29",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133862",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "idAwayTeam": "133704",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "29067",
- "strVenue": "Stade Raymond Kopa",
+ "strResult": "",
+ "idVenue": "16108",
+ "strVenue": "Stade Océane",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/o6owiw1756020313.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/njuez71756019754.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/t6xftc1754808765.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/nu7edi1754727063.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=zJbloq-rAIc",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489544",
- "idAPIfootball": "1552815",
- "strTimestamp": "2026-11-07T16:00:00",
- "strEvent": "Paris Saint-Germain vs Troyes",
- "strEventAlternate": "Troyes @ Paris Saint-Germain",
- "strFilename": "French Ligue 1 2026-11-07 Paris Saint-Germain vs Troyes",
+ "idEvent": "2278191",
+ "idAPIfootball": "1387780",
+ "strTimestamp": "2025-10-29T18:00:00",
+ "strEvent": "Lorient vs Paris Saint-Germain",
+ "strEventAlternate": "Paris SG @ Lorient",
+ "strFilename": "French Ligue 1 2025-10-29 Lorient vs Paris Saint-Germain",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris Saint-Germain",
- "strAwayTeam": "Troyes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lorient",
+ "strAwayTeam": "Paris SG",
+ "intHomeScore": "1",
"intRound": "10",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-07",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133714",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
- "idAwayTeam": "134789",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
+ "dateEvent": "2025-10-29",
+ "dateEventLocal": "2025-10-29",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133715",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "idAwayTeam": "133714",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16024",
- "strVenue": "Parc des Princes",
+ "strResult": "",
+ "idVenue": "16183",
+ "strVenue": "Stade du Moustoir",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/81ykf71781251790.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/larkfq1756019758.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/vppauq1781249144.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6gymra1754727066.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=pIcY7usYMpU",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489545",
- "idAPIfootball": "1552816",
- "strTimestamp": "2026-11-07T16:00:00",
- "strEvent": "Rennes vs Lille",
- "strEventAlternate": "Lille @ Rennes",
- "strFilename": "French Ligue 1 2026-11-07 Rennes vs Lille",
+ "idEvent": "2278192",
+ "idAPIfootball": "1387781",
+ "strTimestamp": "2025-10-29T20:05:00",
+ "strEvent": "Marseille vs Angers",
+ "strEventAlternate": "Angers @ Marseille",
+ "strFilename": "French Ligue 1 2025-10-29 Marseille vs Angers",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Rennes",
- "strAwayTeam": "Lille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Marseille",
+ "strAwayTeam": "Angers",
+ "intHomeScore": "2",
"intRound": "10",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-07",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133719",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
- "idAwayTeam": "133711",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "dateEvent": "2025-10-29",
+ "dateEventLocal": "2025-10-29",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133707",
+ "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "idAwayTeam": "134709",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16104",
- "strVenue": "Roazhon Park",
+ "strResult": "",
+ "idVenue": "27345",
+ "strVenue": "Orange Vélodrome",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/stagoy1756020337.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/j2wxhi1756019762.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/tqonsv1754808791.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xwtv6l1754727070.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=c3s-GtOeAGU",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489546",
- "idAPIfootball": "1552817",
- "strTimestamp": "2026-11-07T16:00:00",
- "strEvent": "Toulouse vs Strasbourg",
- "strEventAlternate": "Strasbourg @ Toulouse",
- "strFilename": "French Ligue 1 2026-11-07 Toulouse vs Strasbourg",
+ "idEvent": "2278193",
+ "idAPIfootball": "1387782",
+ "strTimestamp": "2025-10-29T18:00:00",
+ "strEvent": "Metz vs Lens",
+ "strEventAlternate": "Lens @ Metz",
+ "strFilename": "French Ligue 1 2025-10-29 Metz vs Lens",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Toulouse",
- "strAwayTeam": "Strasbourg",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Metz",
+ "strAwayTeam": "Lens",
+ "intHomeScore": "2",
"intRound": "10",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-07",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133703",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
- "idAwayTeam": "133882",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "dateEvent": "2025-10-29",
+ "dateEventLocal": "2025-10-29",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133883",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
+ "idAwayTeam": "133822",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18238",
- "strVenue": "Stadium de Toulouse",
+ "strResult": "",
+ "idVenue": "16242",
+ "strVenue": "Stade Saint-Symphorien",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ftpj0l1756019942.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ssatyq1756019765.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jqdvsz1754727264.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/w42ato1754727074.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=J46j4RGnOao",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489547",
- "idAPIfootball": "1552812",
- "strTimestamp": "2026-11-07T16:00:00",
- "strEvent": "Brest vs Lyon",
- "strEventAlternate": "Lyon @ Brest",
- "strFilename": "French Ligue 1 2026-11-07 Brest vs Lyon",
+ "idEvent": "2278194",
+ "idAPIfootball": "1387783",
+ "strTimestamp": "2025-10-29T20:05:00",
+ "strEvent": "Nantes vs Monaco",
+ "strEventAlternate": "Monaco @ Nantes",
+ "strFilename": "French Ligue 1 2025-10-29 Nantes vs Monaco",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Brest",
- "strAwayTeam": "Lyon",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nantes",
+ "strAwayTeam": "Monaco",
+ "intHomeScore": "3",
"intRound": "10",
- "intAwayScore": null,
+ "intAwayScore": "5",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-07",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133704",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
- "idAwayTeam": "133713",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "dateEvent": "2025-10-29",
+ "dateEventLocal": "2025-10-29",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133861",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
+ "idAwayTeam": "133823",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17543",
- "strVenue": "Stade Francis-Le Blé",
+ "strResult": "",
+ "idVenue": "16244",
+ "strVenue": "Stade de la Beaujoire - Louis Fonteneau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/3c2fsa1756019790.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/uvdtld1756019769.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0c37hl1754727100.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/dvh55t1754727077.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=IMi2w5eyNwI",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489548",
- "idAPIfootball": "1552811",
- "strTimestamp": "2026-11-07T16:00:00",
- "strEvent": "Auxerre vs Paris FC",
- "strEventAlternate": "Paris FC @ Auxerre",
- "strFilename": "French Ligue 1 2026-11-07 Auxerre vs Paris FC",
+ "idEvent": "2278195",
+ "idAPIfootball": "1387784",
+ "strTimestamp": "2025-10-29T18:00:00",
+ "strEvent": "Nice vs Lille",
+ "strEventAlternate": "Lille @ Nice",
+ "strFilename": "French Ligue 1 2025-10-29 Nice vs Lille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Auxerre",
- "strAwayTeam": "Paris FC",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nice",
+ "strAwayTeam": "Lille",
+ "intHomeScore": "2",
"intRound": "10",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-07",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134788",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
- "idAwayTeam": "135465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "dateEvent": "2025-10-29",
+ "dateEventLocal": "2025-10-29",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133712",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "idAwayTeam": "133711",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16189",
- "strVenue": "Stade de l'Abbé Deschamps",
+ "strResult": "",
+ "idVenue": "16106",
+ "strVenue": "Allianz Riviera",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/8lqxl01756020159.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/40hoxw1756019772.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/owftfm1754808589.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ouptvu1754727081.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=PP3nZK-iSao",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489549",
- "idAPIfootball": "1552813",
- "strTimestamp": "2026-11-07T16:00:00",
- "strEvent": "Le Havre vs Lorient",
- "strEventAlternate": "Lorient @ Le Havre",
- "strFilename": "French Ligue 1 2026-11-07 Le Havre vs Lorient",
+ "idEvent": "2278196",
+ "idAPIfootball": "1387785",
+ "strTimestamp": "2025-10-29T20:05:00",
+ "strEvent": "Paris FC vs Lyon",
+ "strEventAlternate": "Lyon @ Paris FC",
+ "strFilename": "French Ligue 1 2025-10-29 Paris FC vs Lyon",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Havre",
- "strAwayTeam": "Lorient",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris FC",
+ "strAwayTeam": "Lyon",
+ "intHomeScore": "3",
"intRound": "10",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-07",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133862",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
- "idAwayTeam": "133715",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "dateEvent": "2025-10-29",
+ "dateEventLocal": "2025-10-29",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "135465",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "idAwayTeam": "133713",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16108",
- "strVenue": "Stade Océane",
+ "strResult": "",
+ "idVenue": "23528",
+ "strVenue": "Stade Jean-Bouin",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/wbmard1756019587.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/7q13xr1756019776.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jt0ac11754726865.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/t6t4bm1754727085.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=IWukKiPlmRs",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489550",
- "idAPIfootball": "1552814",
- "strTimestamp": "2026-11-07T16:00:00",
- "strEvent": "Le Mans vs Monaco",
- "strEventAlternate": "Monaco @ Le Mans",
- "strFilename": "French Ligue 1 2026-11-07 Le Mans vs Monaco",
+ "idEvent": "2278197",
+ "idAPIfootball": "1387786",
+ "strTimestamp": "2025-10-29T20:05:00",
+ "strEvent": "Strasbourg vs Auxerre",
+ "strEventAlternate": "Auxerre @ Strasbourg",
+ "strFilename": "French Ligue 1 2025-10-29 Strasbourg vs Auxerre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Mans",
- "strAwayTeam": "Monaco",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Strasbourg",
+ "strAwayTeam": "Auxerre",
+ "intHomeScore": "3",
"intRound": "10",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-07",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133848",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
- "idAwayTeam": "133823",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "dateEvent": "2025-10-29",
+ "dateEventLocal": "2025-10-29",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133882",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "idAwayTeam": "134788",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "26610",
- "strVenue": "Stade Marie-Marvingt",
+ "strResult": "",
+ "idVenue": "18120",
+ "strVenue": "Stade de la Meinau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/ky7p3t1781251472.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/9uyg2r1756019779.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/1j0cuo1781249144.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8nl6571754727089.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=UkY2oJv2-Qk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489551",
- "idAPIfootball": "1552818",
- "strTimestamp": "2026-11-07T19:45:00",
- "strEvent": "Lens vs Marseille",
- "strEventAlternate": "Marseille @ Lens",
- "strFilename": "French Ligue 1 2026-11-07 Lens vs Marseille",
+ "idEvent": "2278198",
+ "idAPIfootball": "1387787",
+ "strTimestamp": "2025-10-29T20:05:00",
+ "strEvent": "Toulouse vs Rennes",
+ "strEventAlternate": "Rennes @ Toulouse",
+ "strFilename": "French Ligue 1 2025-10-29 Toulouse vs Rennes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lens",
- "strAwayTeam": "Marseille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Toulouse",
+ "strAwayTeam": "Rennes",
+ "intHomeScore": "2",
"intRound": "10",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-07",
- "dateEventLocal": null,
- "strTime": "19:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133822",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
- "idAwayTeam": "133707",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "dateEvent": "2025-10-29",
+ "dateEventLocal": "2025-10-29",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133703",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "idAwayTeam": "133719",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18385",
- "strVenue": "Stade Bollaert-Delelis",
+ "strResult": "",
+ "idVenue": "18238",
+ "strVenue": "Stadium de Toulouse",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/atnmui1781251473.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/wh0d5v1756019783.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/bhrvjl1781249490.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/85gbg11754727093.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=laXj4Iywg9k",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489552",
- "idAPIfootball": "1552820",
- "strTimestamp": "2026-11-21T16:00:00",
- "strEvent": "Lille vs Lyon",
- "strEventAlternate": "Lyon @ Lille",
- "strFilename": "French Ligue 1 2026-11-21 Lille vs Lyon",
+ "idEvent": "2278199",
+ "idAPIfootball": "1387788",
+ "strTimestamp": "2025-11-01T20:05:00",
+ "strEvent": "Auxerre vs Marseille",
+ "strEventAlternate": "Marseille @ Auxerre",
+ "strFilename": "French Ligue 1 2025-11-01 Auxerre vs Marseille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lille",
- "strAwayTeam": "Lyon",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Auxerre",
+ "strAwayTeam": "Marseille",
+ "intHomeScore": "0",
"intRound": "11",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133711",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
- "idAwayTeam": "133713",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "dateEvent": "2025-11-01",
+ "dateEventLocal": "2025-11-01",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "134788",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "idAwayTeam": "133707",
+ "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17390",
- "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
+ "strResult": "",
+ "idVenue": "16189",
+ "strVenue": "Stade de l'Abbé Deschamps",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/6c5cdi1756019615.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/dlf8lp1756019786.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xktc801754726895.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/wyfcka1754727097.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=T7UGomdXHNE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489553",
- "idAPIfootball": "1552822",
- "strTimestamp": "2026-11-21T16:00:00",
- "strEvent": "Marseille vs Le Mans",
- "strEventAlternate": "Le Mans @ Marseille",
- "strFilename": "French Ligue 1 2026-11-21 Marseille vs Le Mans",
+ "idEvent": "2278203",
+ "idAPIfootball": "1387792",
+ "strTimestamp": "2025-11-01T18:00:00",
+ "strEvent": "Monaco vs Paris FC",
+ "strEventAlternate": "Paris FC @ Monaco",
+ "strFilename": "French Ligue 1 2025-11-01 Monaco vs Paris FC",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Marseille",
- "strAwayTeam": "Le Mans",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Monaco",
+ "strAwayTeam": "Paris FC",
+ "intHomeScore": "0",
"intRound": "11",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133707",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
- "idAwayTeam": "133848",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "dateEvent": "2025-11-01",
+ "dateEventLocal": "2025-11-01",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133823",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "idAwayTeam": "135465",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "27345",
- "strVenue": "Orange Vélodrome",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/9zv7291781251474.jpg",
+ "strResult": "",
+ "idVenue": "16243",
+ "strVenue": "Stade Louis II",
+ "strCountry": "Monaco",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/8xedqh1756019801.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/d0e26u1781249491.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yhixml1754727112.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=qzJKaVIYKs0",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489554",
- "idAPIfootball": "1552824",
- "strTimestamp": "2026-11-21T16:00:00",
- "strEvent": "Nice vs Paris Saint-Germain",
- "strEventAlternate": "Paris Saint-Germain @ Nice",
- "strFilename": "French Ligue 1 2026-11-21 Nice vs Paris Saint-Germain",
+ "idEvent": "2278205",
+ "idAPIfootball": "1387794",
+ "strTimestamp": "2025-11-01T16:00:00",
+ "strEvent": "Paris Saint-Germain vs Nice",
+ "strEventAlternate": "Nice @ Paris SG",
+ "strFilename": "French Ligue 1 2025-11-01 Paris Saint-Germain vs Nice",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Nice",
- "strAwayTeam": "Paris Saint-Germain",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris SG",
+ "strAwayTeam": "Nice",
+ "intHomeScore": "1",
"intRound": "11",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-21",
- "dateEventLocal": null,
+ "dateEvent": "2025-11-01",
+ "dateEventLocal": "2025-11-01",
"strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133712",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
- "idAwayTeam": "133714",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133714",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "idAwayTeam": "133712",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16106",
- "strVenue": "Allianz Riviera",
+ "strResult": "",
+ "idVenue": "16024",
+ "strVenue": "Parc des Princes",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/xmhqdw1781251475.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ypxct71756019808.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/xzq1op1781249147.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/85gbqc1754727119.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=J2Tgowawiqg",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489555",
- "idAPIfootball": "1552823",
- "strTimestamp": "2026-11-21T16:00:00",
- "strEvent": "Monaco vs Auxerre",
- "strEventAlternate": "Auxerre @ Monaco",
- "strFilename": "French Ligue 1 2026-11-21 Monaco vs Auxerre",
+ "idEvent": "2278200",
+ "idAPIfootball": "1387789",
+ "strTimestamp": "2025-11-02T19:45:00",
+ "strEvent": "Brest vs Lyon",
+ "strEventAlternate": "Lyon @ Brest",
+ "strFilename": "French Ligue 1 2025-11-02 Brest vs Lyon",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Monaco",
- "strAwayTeam": "Auxerre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Brest",
+ "strAwayTeam": "Lyon",
+ "intHomeScore": "0",
"intRound": "11",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133823",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
- "idAwayTeam": "134788",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "dateEvent": "2025-11-02",
+ "dateEventLocal": "2025-11-02",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133704",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "idAwayTeam": "133713",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16243",
- "strVenue": "Stade Louis II",
- "strCountry": "Monaco",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/0qtl0a1756020491.jpg",
+ "strResult": "",
+ "idVenue": "17543",
+ "strVenue": "Stade Francis-Le Blé",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/3c2fsa1756019790.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/t3rxln1754808913.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0c37hl1754727100.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=D8U98EgMnbc",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489556",
- "idAPIfootball": "1552826",
- "strTimestamp": "2026-11-21T16:00:00",
- "strEvent": "Strasbourg vs Brest",
- "strEventAlternate": "Brest @ Strasbourg",
- "strFilename": "French Ligue 1 2026-11-21 Strasbourg vs Brest",
+ "idEvent": "2278201",
+ "idAPIfootball": "1387790",
+ "strTimestamp": "2025-11-02T16:15:00",
+ "strEvent": "Lens vs Lorient",
+ "strEventAlternate": "Lorient @ Lens",
+ "strFilename": "French Ligue 1 2025-11-02 Lens vs Lorient",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Strasbourg",
- "strAwayTeam": "Brest",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lens",
+ "strAwayTeam": "Lorient",
+ "intHomeScore": "3",
"intRound": "11",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133882",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
- "idAwayTeam": "133704",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "dateEvent": "2025-11-02",
+ "dateEventLocal": "2025-11-02",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133822",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "idAwayTeam": "133715",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18120",
- "strVenue": "Stade de la Meinau",
+ "strResult": "",
+ "idVenue": "18385",
+ "strVenue": "Stade Bollaert-Delelis",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/d541m81756019910.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/akesbu1756019793.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/62iov01754727230.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4hf8lz1754727104.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=g1vwyakkROE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489557",
- "idAPIfootball": "1552821",
- "strTimestamp": "2026-11-21T16:00:00",
- "strEvent": "Lorient vs Rennes",
- "strEventAlternate": "Rennes @ Lorient",
- "strFilename": "French Ligue 1 2026-11-21 Lorient vs Rennes",
+ "idEvent": "2278202",
+ "idAPIfootball": "1387791",
+ "strTimestamp": "2025-11-02T16:15:00",
+ "strEvent": "Lille vs Angers",
+ "strEventAlternate": "Angers @ Lille",
+ "strFilename": "French Ligue 1 2025-11-02 Lille vs Angers",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lorient",
- "strAwayTeam": "Rennes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lille",
+ "strAwayTeam": "Angers",
+ "intHomeScore": "1",
"intRound": "11",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133715",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
- "idAwayTeam": "133719",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "dateEvent": "2025-11-02",
+ "dateEventLocal": "2025-11-02",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133711",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "idAwayTeam": "134709",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16183",
- "strVenue": "Stade du Moustoir",
+ "strResult": "",
+ "idVenue": "17390",
+ "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/n73ixp1756019475.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/qcumgi1756019797.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7uoxbq1754726744.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7y14ic1754727108.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=a0NHHvmxmok",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489558",
- "idAPIfootball": "1552827",
- "strTimestamp": "2026-11-21T16:00:00",
- "strEvent": "Troyes vs Le Havre",
- "strEventAlternate": "Le Havre @ Troyes",
- "strFilename": "French Ligue 1 2026-11-21 Troyes vs Le Havre",
+ "idEvent": "2278204",
+ "idAPIfootball": "1387793",
+ "strTimestamp": "2025-11-02T16:15:00",
+ "strEvent": "Nantes vs Metz",
+ "strEventAlternate": "Metz @ Nantes",
+ "strFilename": "French Ligue 1 2025-11-02 Nantes vs Metz",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Troyes",
- "strAwayTeam": "Le Havre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nantes",
+ "strAwayTeam": "Metz",
+ "intHomeScore": "0",
"intRound": "11",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134789",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
- "idAwayTeam": "133862",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "dateEvent": "2025-11-02",
+ "dateEventLocal": "2025-11-02",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133861",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
+ "idAwayTeam": "133883",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16192",
- "strVenue": "Stade de l'Aube",
+ "strResult": "",
+ "idVenue": "16244",
+ "strVenue": "Stade de la Beaujoire - Louis Fonteneau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/f2e9ya1781251791.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/npdoa01756019805.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/8opmav1781249148.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3aa1ti1754727116.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=I4CYlHozZLE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489559",
- "idAPIfootball": "1552825",
- "strTimestamp": "2026-11-21T16:00:00",
- "strEvent": "Paris FC vs Angers",
- "strEventAlternate": "Angers @ Paris FC",
- "strFilename": "French Ligue 1 2026-11-21 Paris FC vs Angers",
+ "idEvent": "2278206",
+ "idAPIfootball": "1387795",
+ "strTimestamp": "2025-11-02T14:00:00",
+ "strEvent": "Rennes vs Strasbourg",
+ "strEventAlternate": "Strasbourg @ Rennes",
+ "strFilename": "French Ligue 1 2025-11-02 Rennes vs Strasbourg",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris FC",
- "strAwayTeam": "Angers",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Rennes",
+ "strAwayTeam": "Strasbourg",
+ "intHomeScore": "4",
"intRound": "11",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "135465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
- "idAwayTeam": "134709",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "dateEvent": "2025-11-02",
+ "dateEventLocal": "2025-11-02",
+ "strTime": "14:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133719",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "idAwayTeam": "133882",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "23528",
- "strVenue": "Stade Jean-Bouin",
+ "strResult": "",
+ "idVenue": "16104",
+ "strVenue": "Roazhon Park",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/zgltbb1756020099.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/28k9sk1756019812.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/lktxr21754808545.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/68a55z1754727123.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=HsyI31vqJNE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489560",
- "idAPIfootball": "1552819",
- "strTimestamp": "2026-11-21T16:00:00",
- "strEvent": "Lens vs Toulouse",
- "strEventAlternate": "Toulouse @ Lens",
- "strFilename": "French Ligue 1 2026-11-21 Lens vs Toulouse",
+ "idEvent": "2278207",
+ "idAPIfootball": "1387796",
+ "strTimestamp": "2025-11-02T16:15:00",
+ "strEvent": "Toulouse vs Le Havre",
+ "strEventAlternate": "Le Havre @ Toulouse",
+ "strFilename": "French Ligue 1 2025-11-02 Toulouse vs Le Havre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lens",
- "strAwayTeam": "Toulouse",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Toulouse",
+ "strAwayTeam": "Le Havre",
+ "intHomeScore": "0",
"intRound": "11",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133822",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
- "idAwayTeam": "133703",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "dateEvent": "2025-11-02",
+ "dateEventLocal": "2025-11-02",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133703",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "idAwayTeam": "133862",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18385",
- "strVenue": "Stade Bollaert-Delelis",
+ "strResult": "",
+ "idVenue": "18238",
+ "strVenue": "Stadium de Toulouse",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ojhskg1756020477.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/amdu411756019815.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3z5bpy1754808899.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7l0yuh1754727127.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=00gdZQEsIoY",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489561",
- "idAPIfootball": "1552828",
- "strTimestamp": "2026-11-28T16:00:00",
- "strEvent": "Angers vs Lens",
- "strEventAlternate": "Lens @ Angers",
- "strFilename": "French Ligue 1 2026-11-28 Angers vs Lens",
+ "idEvent": "2278215",
+ "idAPIfootball": "1387804",
+ "strTimestamp": "2025-11-07T19:45:00",
+ "strEvent": "Paris FC vs Rennes",
+ "strEventAlternate": "Rennes @ Paris FC",
+ "strFilename": "French Ligue 1 2025-11-07 Paris FC vs Rennes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Angers",
- "strAwayTeam": "Lens",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris FC",
+ "strAwayTeam": "Rennes",
+ "intHomeScore": "0",
"intRound": "12",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-28",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134709",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
- "idAwayTeam": "133822",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "dateEvent": "2025-11-07",
+ "dateEventLocal": "2025-11-07",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "135465",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "idAwayTeam": "133719",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "29067",
- "strVenue": "Stade Raymond Kopa",
+ "strResult": "",
+ "idVenue": "23528",
+ "strVenue": "Stade Jean-Bouin",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/24goqm1756019882.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/g10sc81756019843.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/w7w5wi1754727199.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bss2k91754727157.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=EDQJhVxBzUk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489562",
- "idAPIfootball": "1552833",
- "strTimestamp": "2026-11-28T16:00:00",
- "strEvent": "Lyon vs Monaco",
- "strEventAlternate": "Monaco @ Lyon",
- "strFilename": "French Ligue 1 2026-11-28 Lyon vs Monaco",
+ "idEvent": "2278209",
+ "idAPIfootball": "1387798",
+ "strTimestamp": "2025-11-08T18:00:00",
+ "strEvent": "Le Havre vs Nantes",
+ "strEventAlternate": "Nantes @ Le Havre",
+ "strFilename": "French Ligue 1 2025-11-08 Le Havre vs Nantes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lyon",
- "strAwayTeam": "Monaco",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Le Havre",
+ "strAwayTeam": "Nantes",
+ "intHomeScore": "1",
"intRound": "12",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-28",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133713",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
- "idAwayTeam": "133823",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "dateEvent": "2025-11-08",
+ "dateEventLocal": "2025-11-08",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133862",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "idAwayTeam": "133861",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16131",
- "strVenue": "Groupama Stadium",
+ "strResult": "",
+ "idVenue": "16108",
+ "strVenue": "Stade Océane",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/egs4381756020368.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/5fobay1756019822.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/etykzb1754808805.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3lku6m1754727135.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=ZNWBClKQYso",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489563",
- "idAPIfootball": "1552834",
- "strTimestamp": "2026-11-28T16:00:00",
- "strEvent": "Nice vs Troyes",
- "strEventAlternate": "Troyes @ Nice",
- "strFilename": "French Ligue 1 2026-11-28 Nice vs Troyes",
+ "idEvent": "2278212",
+ "idAPIfootball": "1387801",
+ "strTimestamp": "2025-11-08T16:00:00",
+ "strEvent": "Marseille vs Brest",
+ "strEventAlternate": "Brest @ Marseille",
+ "strFilename": "French Ligue 1 2025-11-08 Marseille vs Brest",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Nice",
- "strAwayTeam": "Troyes",
- "intHomeScore": null,
- "intRound": "12",
- "intAwayScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Marseille",
+ "strAwayTeam": "Brest",
+ "intHomeScore": "3",
+ "intRound": "12",
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-28",
- "dateEventLocal": null,
+ "dateEvent": "2025-11-08",
+ "dateEventLocal": "2025-11-08",
"strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133712",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
- "idAwayTeam": "134789",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133707",
+ "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "idAwayTeam": "133704",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16106",
- "strVenue": "Allianz Riviera",
+ "strResult": "",
+ "idVenue": "27345",
+ "strVenue": "Orange Vélodrome",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/27k6ny1781251791.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/e5fmx31756019833.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/ik2lpw1781249149.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/nthi2g1754727146.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=NXBMJuAoy-g",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489564",
- "idAPIfootball": "1552835",
- "strTimestamp": "2026-11-28T16:00:00",
- "strEvent": "Paris Saint-Germain vs Lorient",
- "strEventAlternate": "Lorient @ Paris Saint-Germain",
- "strFilename": "French Ligue 1 2026-11-28 Paris Saint-Germain vs Lorient",
+ "idEvent": "2278214",
+ "idAPIfootball": "1387803",
+ "strTimestamp": "2025-11-08T20:05:00",
+ "strEvent": "Monaco vs Lens",
+ "strEventAlternate": "Lens @ Monaco",
+ "strFilename": "French Ligue 1 2025-11-08 Monaco vs Lens",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris Saint-Germain",
- "strAwayTeam": "Lorient",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Monaco",
+ "strAwayTeam": "Lens",
+ "intHomeScore": "1",
"intRound": "12",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-28",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133714",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
- "idAwayTeam": "133715",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "dateEvent": "2025-11-08",
+ "dateEventLocal": "2025-11-08",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133823",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "idAwayTeam": "133822",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16024",
- "strVenue": "Parc des Princes",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/upgij01781251477.jpg",
+ "strResult": "",
+ "idVenue": "16243",
+ "strVenue": "Stade Louis II",
+ "strCountry": "Monaco",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/wurs321756019840.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/mcq2f01781249150.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3konal1754727154.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=xEFBwtp_-jI",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489565",
- "idAPIfootball": "1552836",
- "strTimestamp": "2026-11-28T16:00:00",
- "strEvent": "Toulouse vs Rennes",
- "strEventAlternate": "Rennes @ Toulouse",
- "strFilename": "French Ligue 1 2026-11-28 Toulouse vs Rennes",
+ "idEvent": "2278208",
+ "idAPIfootball": "1387797",
+ "strTimestamp": "2025-11-09T16:15:00",
+ "strEvent": "Angers vs Auxerre",
+ "strEventAlternate": "Auxerre @ Angers",
+ "strFilename": "French Ligue 1 2025-11-09 Angers vs Auxerre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Toulouse",
- "strAwayTeam": "Rennes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Angers",
+ "strAwayTeam": "Auxerre",
+ "intHomeScore": "2",
"intRound": "12",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-28",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133703",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
- "idAwayTeam": "133719",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "dateEvent": "2025-11-09",
+ "dateEventLocal": "2025-11-09",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134709",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "idAwayTeam": "134788",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18238",
- "strVenue": "Stadium de Toulouse",
+ "strResult": "",
+ "idVenue": "29067",
+ "strVenue": "Stade Raymond Kopa",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/wh0d5v1756019783.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/1dcjbw1756019819.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/85gbg11754727093.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1z64v51754727131.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=bIFNjr95qxo",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489566",
- "idAPIfootball": "1552830",
- "strTimestamp": "2026-11-28T16:00:00",
- "strEvent": "Brest vs Paris FC",
- "strEventAlternate": "Paris FC @ Brest",
- "strFilename": "French Ligue 1 2026-11-28 Brest vs Paris FC",
+ "idEvent": "2278210",
+ "idAPIfootball": "1387799",
+ "strTimestamp": "2025-11-09T14:00:00",
+ "strEvent": "Lorient vs Toulouse",
+ "strEventAlternate": "Toulouse @ Lorient",
+ "strFilename": "French Ligue 1 2025-11-09 Lorient vs Toulouse",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Brest",
- "strAwayTeam": "Paris FC",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lorient",
+ "strAwayTeam": "Toulouse",
+ "intHomeScore": "1",
"intRound": "12",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-28",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133704",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
- "idAwayTeam": "135465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "dateEvent": "2025-11-09",
+ "dateEventLocal": "2025-11-09",
+ "strTime": "14:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133715",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "idAwayTeam": "133703",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17543",
- "strVenue": "Stade Francis-Le Blé",
+ "strResult": "",
+ "idVenue": "16183",
+ "strVenue": "Stade du Moustoir",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/nplhw11756019552.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/kq6pnr1756019826.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/p70hye1754726826.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6lisj91754727139.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=yCyVSigwz3Y",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489567",
- "idAPIfootball": "1552829",
- "strTimestamp": "2026-11-28T16:00:00",
- "strEvent": "Auxerre vs Marseille",
- "strEventAlternate": "Marseille @ Auxerre",
- "strFilename": "French Ligue 1 2026-11-28 Auxerre vs Marseille",
+ "idEvent": "2278211",
+ "idAPIfootball": "1387800",
+ "strTimestamp": "2025-11-09T19:45:00",
+ "strEvent": "Lyon vs Paris Saint-Germain",
+ "strEventAlternate": "Paris SG @ Lyon",
+ "strFilename": "French Ligue 1 2025-11-09 Lyon vs Paris Saint-Germain",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Auxerre",
- "strAwayTeam": "Marseille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lyon",
+ "strAwayTeam": "Paris SG",
+ "intHomeScore": "2",
"intRound": "12",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-28",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134788",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
- "idAwayTeam": "133707",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "dateEvent": "2025-11-09",
+ "dateEventLocal": "2025-11-09",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133713",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "idAwayTeam": "133714",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16189",
- "strVenue": "Stade de l'Abbé Deschamps",
+ "strResult": "",
+ "idVenue": "16131",
+ "strVenue": "Groupama Stadium",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/ia57jn1781251477.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/f4c79b1756019829.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/4y9ixf1781249492.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pi8chu1754727142.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=3rEWdQM_eGE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489568",
- "idAPIfootball": "1552831",
- "strTimestamp": "2026-11-28T16:00:00",
- "strEvent": "Le Havre vs Strasbourg",
- "strEventAlternate": "Strasbourg @ Le Havre",
- "strFilename": "French Ligue 1 2026-11-28 Le Havre vs Strasbourg",
+ "idEvent": "2278213",
+ "idAPIfootball": "1387802",
+ "strTimestamp": "2025-11-09T16:15:00",
+ "strEvent": "Metz vs Nice",
+ "strEventAlternate": "Nice @ Metz",
+ "strFilename": "French Ligue 1 2025-11-09 Metz vs Nice",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Havre",
- "strAwayTeam": "Strasbourg",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Metz",
+ "strAwayTeam": "Nice",
+ "intHomeScore": "2",
"intRound": "12",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-28",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133862",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
- "idAwayTeam": "133882",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "dateEvent": "2025-11-09",
+ "dateEventLocal": "2025-11-09",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133883",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
+ "idAwayTeam": "133712",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16108",
- "strVenue": "Stade Océane",
+ "strResult": "",
+ "idVenue": "16242",
+ "strVenue": "Stade Saint-Symphorien",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/dhgi951756020166.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/fxo9s51756019836.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9wurvx1754808596.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mvnbau1754727150.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=IXH8hxiBcbc",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489569",
- "idAPIfootball": "1552832",
- "strTimestamp": "2026-11-28T16:00:00",
- "strEvent": "Le Mans vs Lille",
- "strEventAlternate": "Lille @ Le Mans",
- "strFilename": "French Ligue 1 2026-11-28 Le Mans vs Lille",
+ "idEvent": "2278216",
+ "idAPIfootball": "1387805",
+ "strTimestamp": "2025-11-09T16:15:00",
+ "strEvent": "Strasbourg vs Lille",
+ "strEventAlternate": "Lille @ Strasbourg",
+ "strFilename": "French Ligue 1 2025-11-09 Strasbourg vs Lille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Mans",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Strasbourg",
"strAwayTeam": "Lille",
- "intHomeScore": null,
+ "intHomeScore": "2",
"intRound": "12",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-28",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133848",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "dateEvent": "2025-11-09",
+ "dateEventLocal": "2025-11-09",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133882",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
"idAwayTeam": "133711",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "26610",
- "strVenue": "Stade Marie-Marvingt",
+ "strResult": "",
+ "idVenue": "18120",
+ "strVenue": "Stade de la Meinau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/bxgcl21781251478.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/g7n5z51756019847.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/oh16rn1781249151.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/21lgep1754727161.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=7bMPjDoBh7k",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489570",
- "idAPIfootball": "1552838",
- "strTimestamp": "2026-12-05T16:00:00",
- "strEvent": "Lille vs Auxerre",
- "strEventAlternate": "Auxerre @ Lille",
- "strFilename": "French Ligue 1 2026-12-05 Lille vs Auxerre",
+ "idEvent": "2278222",
+ "idAPIfootball": "1387811",
+ "strTimestamp": "2025-11-21T19:45:00",
+ "strEvent": "Nice vs Marseille",
+ "strEventAlternate": "Marseille @ Nice",
+ "strFilename": "French Ligue 1 2025-11-21 Nice vs Marseille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lille",
- "strAwayTeam": "Auxerre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nice",
+ "strAwayTeam": "Marseille",
+ "intHomeScore": "1",
"intRound": "13",
- "intAwayScore": null,
+ "intAwayScore": "5",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-05",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133711",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
- "idAwayTeam": "134788",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "dateEvent": "2025-11-21",
+ "dateEventLocal": "2025-11-21",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133712",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "idAwayTeam": "133707",
+ "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17390",
- "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
+ "strResult": "",
+ "idVenue": "16106",
+ "strVenue": "Allianz Riviera",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/dazpr11756020619.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/m5xzqb1756019868.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qtnsw41754809082.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9jcc1k1754727184.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=gA9VKy4u04k",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489571",
- "idAPIfootball": "1552839",
- "strTimestamp": "2026-12-05T16:00:00",
- "strEvent": "Marseille vs Nice",
- "strEventAlternate": "Nice @ Marseille",
- "strFilename": "French Ligue 1 2026-12-05 Marseille vs Nice",
+ "idEvent": "2278219",
+ "idAPIfootball": "1387808",
+ "strTimestamp": "2025-11-22T16:00:00",
+ "strEvent": "Lens vs Strasbourg",
+ "strEventAlternate": "Strasbourg @ Lens",
+ "strFilename": "French Ligue 1 2025-11-22 Lens vs Strasbourg",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Marseille",
- "strAwayTeam": "Nice",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lens",
+ "strAwayTeam": "Strasbourg",
+ "intHomeScore": "1",
"intRound": "13",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-05",
- "dateEventLocal": null,
+ "dateEvent": "2025-11-22",
+ "dateEventLocal": "2025-11-22",
"strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133707",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
- "idAwayTeam": "133712",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133822",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "idAwayTeam": "133882",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "27345",
- "strVenue": "Orange Vélodrome",
+ "strResult": "",
+ "idVenue": "18385",
+ "strVenue": "Stade Bollaert-Delelis",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/h6t5011781251479.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/q3np8l1756019857.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/kjxd4g1781249493.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/l10k6a1754727172.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=p02hG80PI5o",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489572",
- "idAPIfootball": "1552840",
- "strTimestamp": "2026-12-05T16:00:00",
- "strEvent": "Monaco vs Angers",
- "strEventAlternate": "Angers @ Monaco",
- "strFilename": "French Ligue 1 2026-12-05 Monaco vs Angers",
+ "idEvent": "2278223",
+ "idAPIfootball": "1387812",
+ "strTimestamp": "2025-11-22T20:05:00",
+ "strEvent": "Paris Saint-Germain vs Le Havre",
+ "strEventAlternate": "Le Havre @ Paris SG",
+ "strFilename": "French Ligue 1 2025-11-22 Paris Saint-Germain vs Le Havre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Monaco",
- "strAwayTeam": "Angers",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris SG",
+ "strAwayTeam": "Le Havre",
+ "intHomeScore": "3",
"intRound": "13",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-05",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133823",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
- "idAwayTeam": "134709",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "dateEvent": "2025-11-22",
+ "dateEventLocal": "2025-11-22",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133714",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "idAwayTeam": "133862",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16243",
- "strVenue": "Stade Louis II",
- "strCountry": "Monaco",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/54d25o1756020267.jpg",
+ "strResult": "",
+ "idVenue": "16024",
+ "strVenue": "Parc des Princes",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/inkye41756019871.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5ehg581754808719.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8tz2sa1754727187.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=ELaf3_ByfpQ",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489573",
- "idAPIfootball": "1552842",
- "strTimestamp": "2026-12-05T16:00:00",
- "strEvent": "Rennes vs Brest",
- "strEventAlternate": "Brest @ Rennes",
- "strFilename": "French Ligue 1 2026-12-05 Rennes vs Brest",
+ "idEvent": "2278224",
+ "idAPIfootball": "1387813",
+ "strTimestamp": "2025-11-22T18:00:00",
+ "strEvent": "Rennes vs Monaco",
+ "strEventAlternate": "Monaco @ Rennes",
+ "strFilename": "French Ligue 1 2025-11-22 Rennes vs Monaco",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Rennes",
- "strAwayTeam": "Brest",
- "intHomeScore": null,
+ "strAwayTeam": "Monaco",
+ "intHomeScore": "4",
"intRound": "13",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-05",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2025-11-22",
+ "dateEventLocal": "2025-11-22",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
"idHomeTeam": "133719",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
- "idAwayTeam": "133704",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "idAwayTeam": "133823",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "16104",
"strVenue": "Roazhon Park",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/std32u1756019970.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/z3vmcd1756019875.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/tazdny1754727295.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qi44s51754727191.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=1xc74YKFZtQ",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489574",
- "idAPIfootball": "1552843",
- "strTimestamp": "2026-12-05T16:00:00",
- "strEvent": "Strasbourg vs Lorient",
- "strEventAlternate": "Lorient @ Strasbourg",
- "strFilename": "French Ligue 1 2026-12-05 Strasbourg vs Lorient",
+ "idEvent": "2278217",
+ "idAPIfootball": "1387806",
+ "strTimestamp": "2025-11-23T14:00:00",
+ "strEvent": "Auxerre vs Lyon",
+ "strEventAlternate": "Lyon @ Auxerre",
+ "strFilename": "French Ligue 1 2025-11-23 Auxerre vs Lyon",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Strasbourg",
- "strAwayTeam": "Lorient",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Auxerre",
+ "strAwayTeam": "Lyon",
+ "intHomeScore": "0",
"intRound": "13",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-05",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133882",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
- "idAwayTeam": "133715",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "dateEvent": "2025-11-23",
+ "dateEventLocal": "2025-11-23",
+ "strTime": "14:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134788",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "idAwayTeam": "133713",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18120",
- "strVenue": "Stade de la Meinau",
+ "strResult": "",
+ "idVenue": "16189",
+ "strVenue": "Stade de l'Abbé Deschamps",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/g4gd7b1756019973.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/u6bwwr1756019850.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fonyph1754727299.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/izplkc1754727165.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=5w9jxR1D_mg",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489575",
- "idAPIfootball": "1552844",
- "strTimestamp": "2026-12-05T16:00:00",
- "strEvent": "Toulouse vs Paris Saint-Germain",
- "strEventAlternate": "Paris Saint-Germain @ Toulouse",
- "strFilename": "French Ligue 1 2026-12-05 Toulouse vs Paris Saint-Germain",
+ "idEvent": "2278218",
+ "idAPIfootball": "1387807",
+ "strTimestamp": "2025-11-23T16:15:00",
+ "strEvent": "Brest vs Metz",
+ "strEventAlternate": "Metz @ Brest",
+ "strFilename": "French Ligue 1 2025-11-23 Brest vs Metz",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Toulouse",
- "strAwayTeam": "Paris Saint-Germain",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Brest",
+ "strAwayTeam": "Metz",
+ "intHomeScore": "3",
"intRound": "13",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-05",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133703",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
- "idAwayTeam": "133714",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "dateEvent": "2025-11-23",
+ "dateEventLocal": "2025-11-23",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133704",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "idAwayTeam": "133883",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18238",
- "strVenue": "Stadium de Toulouse",
+ "strResult": "",
+ "idVenue": "17543",
+ "strVenue": "Stade Francis-Le Blé",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/t2mxk31781251480.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/xkyjne1756019854.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/xz8lge1781249153.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/wwxlhv1754727169.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=au3Dyy7N7gA",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489576",
- "idAPIfootball": "1552845",
- "strTimestamp": "2026-12-05T16:00:00",
- "strEvent": "Troyes vs Lyon",
- "strEventAlternate": "Lyon @ Troyes",
- "strFilename": "French Ligue 1 2026-12-05 Troyes vs Lyon",
- "strSport": "Soccer",
+ "idEvent": "2278220",
+ "idAPIfootball": "1387809",
+ "strTimestamp": "2025-11-23T19:45:00",
+ "strEvent": "Lille vs Paris FC",
+ "strEventAlternate": "Paris FC @ Lille",
+ "strFilename": "French Ligue 1 2025-11-23 Lille vs Paris FC",
+ "strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Troyes",
- "strAwayTeam": "Lyon",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lille",
+ "strAwayTeam": "Paris FC",
+ "intHomeScore": "4",
"intRound": "13",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-05",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134789",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
- "idAwayTeam": "133713",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "dateEvent": "2025-11-23",
+ "dateEventLocal": "2025-11-23",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133711",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "idAwayTeam": "135465",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16192",
- "strVenue": "Stade de l'Aube",
+ "strResult": "",
+ "idVenue": "17390",
+ "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/xwwz3k1781251792.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/eztd2s1756019861.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/s1jnlc1781249154.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/lp2x8c1754727176.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=pHwsQD3WQSM",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489577",
- "idAPIfootball": "1552841",
- "strTimestamp": "2026-12-05T16:00:00",
- "strEvent": "Paris FC vs Le Mans",
- "strEventAlternate": "Le Mans @ Paris FC",
- "strFilename": "French Ligue 1 2026-12-05 Paris FC vs Le Mans",
+ "idEvent": "2278221",
+ "idAPIfootball": "1387810",
+ "strTimestamp": "2025-11-23T16:15:00",
+ "strEvent": "Nantes vs Lorient",
+ "strEventAlternate": "Lorient @ Nantes",
+ "strFilename": "French Ligue 1 2025-11-23 Nantes vs Lorient",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris FC",
- "strAwayTeam": "Le Mans",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nantes",
+ "strAwayTeam": "Lorient",
+ "intHomeScore": "1",
"intRound": "13",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-05",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "135465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
- "idAwayTeam": "133848",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "dateEvent": "2025-11-23",
+ "dateEventLocal": "2025-11-23",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133861",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
+ "idAwayTeam": "133715",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "23528",
- "strVenue": "Stade Jean-Bouin",
+ "strResult": "",
+ "idVenue": "16244",
+ "strVenue": "Stade de la Beaujoire - Louis Fonteneau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/b47wve1781251481.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ch9wxk1756019864.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/bw49s61781249155.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/psgs5l1754727180.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=kYXgLWiNInc",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489578",
- "idAPIfootball": "1552837",
- "strTimestamp": "2026-12-05T16:00:00",
- "strEvent": "Lens vs Le Havre",
- "strEventAlternate": "Le Havre @ Lens",
- "strFilename": "French Ligue 1 2026-12-05 Lens vs Le Havre",
+ "idEvent": "2278225",
+ "idAPIfootball": "1387814",
+ "strTimestamp": "2025-11-23T16:15:00",
+ "strEvent": "Toulouse vs Angers",
+ "strEventAlternate": "Angers @ Toulouse",
+ "strFilename": "French Ligue 1 2025-11-23 Toulouse vs Angers",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lens",
- "strAwayTeam": "Le Havre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Toulouse",
+ "strAwayTeam": "Angers",
+ "intHomeScore": "0",
"intRound": "13",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-05",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133822",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
- "idAwayTeam": "133862",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "dateEvent": "2025-11-23",
+ "dateEventLocal": "2025-11-23",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133703",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "idAwayTeam": "134709",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18385",
- "strVenue": "Stade Bollaert-Delelis",
+ "strResult": "",
+ "idVenue": "18238",
+ "strVenue": "Stadium de Toulouse",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/c0kr3q1756020110.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/nea0ho1756019878.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9olnpq1754808556.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/t8scyo1754727195.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=uruIRuIaceM",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489579",
- "idAPIfootball": "1552846",
- "strTimestamp": "2026-12-12T16:00:00",
- "strEvent": "Angers vs Strasbourg",
- "strEventAlternate": "Strasbourg @ Angers",
- "strFilename": "French Ligue 1 2026-12-12 Angers vs Strasbourg",
+ "idEvent": "2278231",
+ "idAPIfootball": "1387820",
+ "strTimestamp": "2025-11-28T19:45:00",
+ "strEvent": "Metz vs Rennes",
+ "strEventAlternate": "Rennes @ Metz",
+ "strFilename": "French Ligue 1 2025-11-28 Metz vs Rennes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Angers",
- "strAwayTeam": "Strasbourg",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Metz",
+ "strAwayTeam": "Rennes",
+ "intHomeScore": "0",
"intRound": "14",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-12",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134709",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
- "idAwayTeam": "133882",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "dateEvent": "2025-11-28",
+ "dateEventLocal": "2025-11-28",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133883",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
+ "idAwayTeam": "133719",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "29067",
- "strVenue": "Stade Raymond Kopa",
+ "strResult": "",
+ "idVenue": "16242",
+ "strVenue": "Stade Saint-Symphorien",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/dxlpuf1756020567.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/1z30ql1756019899.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/v1lvpz1754809028.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/41g3mp1754727218.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=wpppSycDTYo",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489580",
- "idAPIfootball": "1552851",
- "strTimestamp": "2026-12-12T16:00:00",
- "strEvent": "Nice vs Lens",
- "strEventAlternate": "Lens @ Nice",
- "strFilename": "French Ligue 1 2026-12-12 Nice vs Lens",
+ "idEvent": "2278230",
+ "idAPIfootball": "1387819",
+ "strTimestamp": "2025-11-29T20:05:00",
+ "strEvent": "Marseille vs Toulouse",
+ "strEventAlternate": "Toulouse @ Marseille",
+ "strFilename": "French Ligue 1 2025-11-29 Marseille vs Toulouse",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Nice",
- "strAwayTeam": "Lens",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Marseille",
+ "strAwayTeam": "Toulouse",
+ "intHomeScore": "2",
"intRound": "14",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-12",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133712",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
- "idAwayTeam": "133822",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "dateEvent": "2025-11-29",
+ "dateEventLocal": "2025-11-29",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133707",
+ "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "idAwayTeam": "133703",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16106",
- "strVenue": "Allianz Riviera",
+ "strResult": "",
+ "idVenue": "27345",
+ "strVenue": "Orange Vélodrome",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/me619a1756020553.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/k88q0v1756019896.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/92tdeb1754809014.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/tvzl4s1754727214.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=uH60ghF4_sw",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489581",
- "idAPIfootball": "1552852",
- "strTimestamp": "2026-12-12T16:00:00",
- "strEvent": "Paris Saint-Germain vs Paris FC",
- "strEventAlternate": "Paris FC @ Paris Saint-Germain",
- "strFilename": "French Ligue 1 2026-12-12 Paris Saint-Germain vs Paris FC",
+ "idEvent": "2278232",
+ "idAPIfootball": "1387821",
+ "strTimestamp": "2025-11-29T16:00:00",
+ "strEvent": "Monaco vs Paris Saint-Germain",
+ "strEventAlternate": "Paris SG @ Monaco",
+ "strFilename": "French Ligue 1 2025-11-29 Monaco vs Paris Saint-Germain",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris Saint-Germain",
- "strAwayTeam": "Paris FC",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Monaco",
+ "strAwayTeam": "Paris SG",
+ "intHomeScore": "1",
"intRound": "14",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-12",
- "dateEventLocal": null,
+ "dateEvent": "2025-11-29",
+ "dateEventLocal": "2025-11-29",
"strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133714",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
- "idAwayTeam": "135465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133823",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "idAwayTeam": "133714",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16024",
- "strVenue": "Parc des Princes",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/1jdi441781251481.jpg",
+ "strResult": "",
+ "idVenue": "16243",
+ "strVenue": "Stade Louis II",
+ "strCountry": "Monaco",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ixdnhg1756019903.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/jtsyga1781249156.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ud8bdi1754727222.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=lTGtGOsmULs",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489582",
- "idAPIfootball": "1552853",
- "strTimestamp": "2026-12-12T16:00:00",
- "strEvent": "Rennes vs Monaco",
- "strEventAlternate": "Monaco @ Rennes",
- "strFilename": "French Ligue 1 2026-12-12 Rennes vs Monaco",
+ "idEvent": "2278233",
+ "idAPIfootball": "1387822",
+ "strTimestamp": "2025-11-29T18:00:00",
+ "strEvent": "Paris FC vs Auxerre",
+ "strEventAlternate": "Auxerre @ Paris FC",
+ "strFilename": "French Ligue 1 2025-11-29 Paris FC vs Auxerre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Rennes",
- "strAwayTeam": "Monaco",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris FC",
+ "strAwayTeam": "Auxerre",
+ "intHomeScore": "1",
"intRound": "14",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-12",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133719",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
- "idAwayTeam": "133823",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "dateEvent": "2025-11-29",
+ "dateEventLocal": "2025-11-29",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "135465",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "idAwayTeam": "134788",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16104",
- "strVenue": "Roazhon Park",
+ "strResult": "",
+ "idVenue": "23528",
+ "strVenue": "Stade Jean-Bouin",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/z3vmcd1756019875.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/bzzeym1756019906.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qi44s51754727191.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pvle921754727226.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=DurkOrRcwY0",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489583",
- "idAPIfootball": "1552850",
- "strTimestamp": "2026-12-12T16:00:00",
- "strEvent": "Lorient vs Lille",
- "strEventAlternate": "Lille @ Lorient",
- "strFilename": "French Ligue 1 2026-12-12 Lorient vs Lille",
+ "idEvent": "2278226",
+ "idAPIfootball": "1387815",
+ "strTimestamp": "2025-11-30T16:15:00",
+ "strEvent": "Angers vs Lens",
+ "strEventAlternate": "Lens @ Angers",
+ "strFilename": "French Ligue 1 2025-11-30 Angers vs Lens",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lorient",
- "strAwayTeam": "Lille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Angers",
+ "strAwayTeam": "Lens",
+ "intHomeScore": "1",
"intRound": "14",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-12",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133715",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
- "idAwayTeam": "133711",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "dateEvent": "2025-11-30",
+ "dateEventLocal": "2025-11-30",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134709",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "idAwayTeam": "133822",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16183",
- "strVenue": "Stade du Moustoir",
+ "strResult": "",
+ "idVenue": "29067",
+ "strVenue": "Stade Raymond Kopa",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ssy1te1756019528.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/24goqm1756019882.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/n7mq851754726782.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/w7w5wi1754727199.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=CJoN8mNQ-yo",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489584",
- "idAPIfootball": "1552848",
- "strTimestamp": "2026-12-12T16:00:00",
- "strEvent": "Brest vs Troyes",
- "strEventAlternate": "Troyes @ Brest",
- "strFilename": "French Ligue 1 2026-12-12 Brest vs Troyes",
+ "idEvent": "2278227",
+ "idAPIfootball": "1387816",
+ "strTimestamp": "2025-11-30T16:15:00",
+ "strEvent": "Le Havre vs Lille",
+ "strEventAlternate": "Lille @ Le Havre",
+ "strFilename": "French Ligue 1 2025-11-30 Le Havre vs Lille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Brest",
- "strAwayTeam": "Troyes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Le Havre",
+ "strAwayTeam": "Lille",
+ "intHomeScore": "0",
"intRound": "14",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-12",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133704",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
- "idAwayTeam": "134789",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
+ "dateEvent": "2025-11-30",
+ "dateEventLocal": "2025-11-30",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133862",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "idAwayTeam": "133711",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17543",
- "strVenue": "Stade Francis-Le Blé",
+ "strResult": "",
+ "idVenue": "16108",
+ "strVenue": "Stade Océane",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/fsy9g61781251793.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/zaoule1756019885.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/tsxwk01781249157.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/75w78g1754727203.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=qeSkyvroh20",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489585",
- "idAPIfootball": "1552847",
- "strTimestamp": "2026-12-12T16:00:00",
- "strEvent": "Auxerre vs Toulouse",
- "strEventAlternate": "Toulouse @ Auxerre",
- "strFilename": "French Ligue 1 2026-12-12 Auxerre vs Toulouse",
+ "idEvent": "2278228",
+ "idAPIfootball": "1387817",
+ "strTimestamp": "2025-11-30T16:15:00",
+ "strEvent": "Lorient vs Nice",
+ "strEventAlternate": "Nice @ Lorient",
+ "strFilename": "French Ligue 1 2025-11-30 Lorient vs Nice",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Auxerre",
- "strAwayTeam": "Toulouse",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lorient",
+ "strAwayTeam": "Nice",
+ "intHomeScore": "3",
"intRound": "14",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-12",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134788",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
- "idAwayTeam": "133703",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "dateEvent": "2025-11-30",
+ "dateEventLocal": "2025-11-30",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133715",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "idAwayTeam": "133712",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16189",
- "strVenue": "Stade de l'Abbé Deschamps",
+ "strResult": "",
+ "idVenue": "16183",
+ "strVenue": "Stade du Moustoir",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/m9xj211756019580.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/iv74us1756019889.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/t6011c1754726857.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fsi0w81754727207.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=AHi7Tox_1bY",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489586",
- "idAPIfootball": "1552849",
- "strTimestamp": "2026-12-12T16:00:00",
- "strEvent": "Le Havre vs Le Mans",
- "strEventAlternate": "Le Mans @ Le Havre",
- "strFilename": "French Ligue 1 2026-12-12 Le Havre vs Le Mans",
+ "idEvent": "2278229",
+ "idAPIfootball": "1387818",
+ "strTimestamp": "2025-11-30T19:45:00",
+ "strEvent": "Lyon vs Nantes",
+ "strEventAlternate": "Nantes @ Lyon",
+ "strFilename": "French Ligue 1 2025-11-30 Lyon vs Nantes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Havre",
- "strAwayTeam": "Le Mans",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lyon",
+ "strAwayTeam": "Nantes",
+ "intHomeScore": "3",
"intRound": "14",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-12",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133862",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
- "idAwayTeam": "133848",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "dateEvent": "2025-11-30",
+ "dateEventLocal": "2025-11-30",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133713",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "idAwayTeam": "133861",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16108",
- "strVenue": "Stade Océane",
+ "strResult": "",
+ "idVenue": "16131",
+ "strVenue": "Groupama Stadium",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/j609nl1781251482.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/gz51311756019892.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/c5ma941781249158.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/u9fydr1754727210.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=GU-J2BTGGbA",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489587",
- "idAPIfootball": "1552854",
- "strTimestamp": "2026-12-13T19:45:00",
- "strEvent": "Lyon vs Marseille",
- "strEventAlternate": "Marseille @ Lyon",
- "strFilename": "French Ligue 1 2026-12-13 Lyon vs Marseille",
+ "idEvent": "2278234",
+ "idAPIfootball": "1387823",
+ "strTimestamp": "2025-11-30T14:00:00",
+ "strEvent": "Strasbourg vs Brest",
+ "strEventAlternate": "Brest @ Strasbourg",
+ "strFilename": "French Ligue 1 2025-11-30 Strasbourg vs Brest",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lyon",
- "strAwayTeam": "Marseille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Strasbourg",
+ "strAwayTeam": "Brest",
+ "intHomeScore": "1",
"intRound": "14",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-13",
- "dateEventLocal": null,
- "strTime": "19:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133713",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
- "idAwayTeam": "133707",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "dateEvent": "2025-11-30",
+ "dateEventLocal": "2025-11-30",
+ "strTime": "14:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133882",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "idAwayTeam": "133704",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16131",
- "strVenue": "Groupama Stadium",
+ "strResult": "",
+ "idVenue": "18120",
+ "strVenue": "Stade de la Meinau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/eas0h61781251483.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/d541m81756019910.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/s19swf1781249494.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/62iov01754727230.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=MxHaKVbRzA8",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489588",
- "idAPIfootball": "1552857",
- "strTimestamp": "2027-01-02T16:00:00",
- "strEvent": "Lille vs Strasbourg",
- "strEventAlternate": "Strasbourg @ Lille",
- "strFilename": "French Ligue 1 2027-01-02 Lille vs Strasbourg",
+ "idEvent": "2278236",
+ "idAPIfootball": "1387825",
+ "strTimestamp": "2025-12-05T18:00:00",
+ "strEvent": "Brest vs Monaco",
+ "strEventAlternate": "Monaco @ Brest",
+ "strFilename": "French Ligue 1 2025-12-05 Brest vs Monaco",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lille",
- "strAwayTeam": "Strasbourg",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Brest",
+ "strAwayTeam": "Monaco",
+ "intHomeScore": "1",
"intRound": "15",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-02",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133711",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
- "idAwayTeam": "133882",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "dateEvent": "2025-12-05",
+ "dateEventLocal": "2025-12-05",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133704",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "idAwayTeam": "133823",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17390",
- "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
+ "strResult": "",
+ "idVenue": "17543",
+ "strVenue": "Stade Francis-Le Blé",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/edgtk41756020086.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/v4i76e1756019917.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/298bbn1754808531.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hrveem1754727237.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=6rGC4WDf1Ik",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489589",
- "idAPIfootball": "1552859",
- "strTimestamp": "2027-01-02T16:00:00",
- "strEvent": "Monaco vs Nice",
- "strEventAlternate": "Nice @ Monaco",
- "strFilename": "French Ligue 1 2027-01-02 Monaco vs Nice",
+ "idEvent": "2278238",
+ "idAPIfootball": "1387827",
+ "strTimestamp": "2025-12-05T20:00:00",
+ "strEvent": "Lille vs Marseille",
+ "strEventAlternate": "Marseille @ Lille",
+ "strFilename": "French Ligue 1 2025-12-05 Lille vs Marseille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Monaco",
- "strAwayTeam": "Nice",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lille",
+ "strAwayTeam": "Marseille",
+ "intHomeScore": "1",
"intRound": "15",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-02",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133823",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
- "idAwayTeam": "133712",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "dateEvent": "2025-12-05",
+ "dateEventLocal": "2025-12-05",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133711",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "idAwayTeam": "133707",
+ "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16243",
- "strVenue": "Stade Louis II",
- "strCountry": "Monaco",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/t48aax1756019663.jpg",
+ "strResult": "",
+ "idVenue": "17390",
+ "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/km1wkm1756019924.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/cm4v3m1754726947.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5af93p1754727245.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=sCLROkId55w",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489590",
- "idAPIfootball": "1552861",
- "strTimestamp": "2027-01-02T16:00:00",
- "strEvent": "Toulouse vs Angers",
- "strEventAlternate": "Angers @ Toulouse",
- "strFilename": "French Ligue 1 2027-01-02 Toulouse vs Angers",
+ "idEvent": "2278240",
+ "idAPIfootball": "1387829",
+ "strTimestamp": "2025-12-06T16:00:00",
+ "strEvent": "Nantes vs Lens",
+ "strEventAlternate": "Lens @ Nantes",
+ "strFilename": "French Ligue 1 2025-12-06 Nantes vs Lens",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Toulouse",
- "strAwayTeam": "Angers",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nantes",
+ "strAwayTeam": "Lens",
+ "intHomeScore": "1",
"intRound": "15",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-02",
- "dateEventLocal": null,
+ "dateEvent": "2025-12-06",
+ "dateEventLocal": "2025-12-06",
"strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133703",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
- "idAwayTeam": "134709",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133861",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
+ "idAwayTeam": "133822",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18238",
- "strVenue": "Stadium de Toulouse",
+ "strResult": "",
+ "idVenue": "16244",
+ "strVenue": "Stade de la Beaujoire - Louis Fonteneau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/nea0ho1756019878.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/zhidmg1756019931.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/t8scyo1754727195.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/p34zhv1754727252.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=Z-pVablTZ7E",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489591",
- "idAPIfootball": "1552858",
- "strTimestamp": "2027-01-02T16:00:00",
- "strEvent": "Lorient vs Auxerre",
- "strEventAlternate": "Auxerre @ Lorient",
- "strFilename": "French Ligue 1 2027-01-02 Lorient vs Auxerre",
+ "idEvent": "2278242",
+ "idAPIfootball": "1387831",
+ "strTimestamp": "2025-12-06T20:05:00",
+ "strEvent": "Paris Saint-Germain vs Rennes",
+ "strEventAlternate": "Rennes @ Paris SG",
+ "strFilename": "French Ligue 1 2025-12-06 Paris Saint-Germain vs Rennes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lorient",
- "strAwayTeam": "Auxerre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris SG",
+ "strAwayTeam": "Rennes",
+ "intHomeScore": "5",
"intRound": "15",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-02",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133715",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
- "idAwayTeam": "134788",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "dateEvent": "2025-12-06",
+ "dateEventLocal": "2025-12-06",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133714",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "idAwayTeam": "133719",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16183",
- "strVenue": "Stade du Moustoir",
+ "strResult": "",
+ "idVenue": "16024",
+ "strVenue": "Parc des Princes",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/sbh8pi1756020257.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/txk1e51756019938.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/31zqgn1754808708.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4p1rsu1754727260.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=8ba5dKKvPl4",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489592",
- "idAPIfootball": "1552855",
- "strTimestamp": "2027-01-02T16:00:00",
- "strEvent": "Brest vs Marseille",
- "strEventAlternate": "Marseille @ Brest",
- "strFilename": "French Ligue 1 2027-01-02 Brest vs Marseille",
+ "idEvent": "2278243",
+ "idAPIfootball": "1387832",
+ "strTimestamp": "2025-12-06T18:00:00",
+ "strEvent": "Toulouse vs Strasbourg",
+ "strEventAlternate": "Strasbourg @ Toulouse",
+ "strFilename": "French Ligue 1 2025-12-06 Toulouse vs Strasbourg",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Brest",
- "strAwayTeam": "Marseille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Toulouse",
+ "strAwayTeam": "Strasbourg",
+ "intHomeScore": "1",
"intRound": "15",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-02",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133704",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
- "idAwayTeam": "133707",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "dateEvent": "2025-12-06",
+ "dateEventLocal": "2025-12-06",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133703",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "idAwayTeam": "133882",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17543",
- "strVenue": "Stade Francis-Le Blé",
+ "strResult": "",
+ "idVenue": "18238",
+ "strVenue": "Stadium de Toulouse",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/ljcyav1781251484.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ftpj0l1756019942.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/b1czhe1781249495.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jqdvsz1754727264.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=AEL7e3YqEvw",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489593",
- "idAPIfootball": "1552862",
- "strTimestamp": "2027-01-02T16:00:00",
- "strEvent": "Troyes vs Rennes",
- "strEventAlternate": "Rennes @ Troyes",
- "strFilename": "French Ligue 1 2027-01-02 Troyes vs Rennes",
+ "idEvent": "2278235",
+ "idAPIfootball": "1387824",
+ "strTimestamp": "2025-12-07T16:15:00",
+ "strEvent": "Auxerre vs Metz",
+ "strEventAlternate": "Metz @ Auxerre",
+ "strFilename": "French Ligue 1 2025-12-07 Auxerre vs Metz",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Troyes",
- "strAwayTeam": "Rennes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Auxerre",
+ "strAwayTeam": "Metz",
+ "intHomeScore": "3",
"intRound": "15",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-02",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134789",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
- "idAwayTeam": "133719",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "dateEvent": "2025-12-07",
+ "dateEventLocal": "2025-12-07",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134788",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "idAwayTeam": "133883",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16192",
- "strVenue": "Stade de l'Aube",
+ "strResult": "",
+ "idVenue": "16189",
+ "strVenue": "Stade de l'Abbé Deschamps",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/ieohi31781251794.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/06qfeg1756019913.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/m0izyk1781249160.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/dl69ue1754727234.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=H1GJx7kGQZI",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489594",
- "idAPIfootball": "1552860",
- "strTimestamp": "2027-01-02T16:00:00",
- "strEvent": "Paris FC vs Le Havre",
- "strEventAlternate": "Le Havre @ Paris FC",
- "strFilename": "French Ligue 1 2027-01-02 Paris FC vs Le Havre",
+ "idEvent": "2278237",
+ "idAPIfootball": "1387826",
+ "strTimestamp": "2025-12-07T16:15:00",
+ "strEvent": "Le Havre vs Paris FC",
+ "strEventAlternate": "Paris FC @ Le Havre",
+ "strFilename": "French Ligue 1 2025-12-07 Le Havre vs Paris FC",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris FC",
- "strAwayTeam": "Le Havre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Le Havre",
+ "strAwayTeam": "Paris FC",
+ "intHomeScore": "0",
"intRound": "15",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-02",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "135465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
- "idAwayTeam": "133862",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "dateEvent": "2025-12-07",
+ "dateEventLocal": "2025-12-07",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133862",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "idAwayTeam": "135465",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "23528",
- "strVenue": "Stade Jean-Bouin",
+ "strResult": "",
+ "idVenue": "16108",
+ "strVenue": "Stade Océane",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/8sqxb71756020376.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/hbivdh1756019920.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/n1sv5o1754808813.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ckt3is1754727241.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=vZ2ARtAJB8E",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489595",
- "idAPIfootball": "1552856",
- "strTimestamp": "2027-01-02T16:00:00",
- "strEvent": "Le Mans vs Lyon",
- "strEventAlternate": "Lyon @ Le Mans",
- "strFilename": "French Ligue 1 2027-01-02 Le Mans vs Lyon",
+ "idEvent": "2278239",
+ "idAPIfootball": "1387828",
+ "strTimestamp": "2025-12-07T19:45:00",
+ "strEvent": "Lorient vs Lyon",
+ "strEventAlternate": "Lyon @ Lorient",
+ "strFilename": "French Ligue 1 2025-12-07 Lorient vs Lyon",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Mans",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lorient",
"strAwayTeam": "Lyon",
- "intHomeScore": null,
+ "intHomeScore": "1",
"intRound": "15",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-02",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133848",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "dateEvent": "2025-12-07",
+ "dateEventLocal": "2025-12-07",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133715",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"idAwayTeam": "133713",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "26610",
- "strVenue": "Stade Marie-Marvingt",
+ "strResult": "",
+ "idVenue": "16183",
+ "strVenue": "Stade du Moustoir",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/pritk01781251485.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/8txxby1756019927.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/jy1hh31781249161.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ua44761754727248.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=imyXpQUvIE0",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489596",
- "idAPIfootball": "1552863",
- "strTimestamp": "2027-01-03T19:45:00",
- "strEvent": "Lens vs Paris Saint-Germain",
- "strEventAlternate": "Paris Saint-Germain @ Lens",
- "strFilename": "French Ligue 1 2027-01-03 Lens vs Paris Saint-Germain",
+ "idEvent": "2278241",
+ "idAPIfootball": "1387830",
+ "strTimestamp": "2025-12-07T14:00:00",
+ "strEvent": "Nice vs Angers",
+ "strEventAlternate": "Angers @ Nice",
+ "strFilename": "French Ligue 1 2025-12-07 Nice vs Angers",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lens",
- "strAwayTeam": "Paris Saint-Germain",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nice",
+ "strAwayTeam": "Angers",
+ "intHomeScore": "0",
"intRound": "15",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-03",
- "dateEventLocal": null,
- "strTime": "19:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133822",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
- "idAwayTeam": "133714",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "dateEvent": "2025-12-07",
+ "dateEventLocal": "2025-12-07",
+ "strTime": "14:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133712",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "idAwayTeam": "134709",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18385",
- "strVenue": "Stade Bollaert-Delelis",
+ "strResult": "",
+ "idVenue": "16106",
+ "strVenue": "Allianz Riviera",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/mu1pnl1781251486.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/mgxl631756019934.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/a87ztw1781249162.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/d8n7qx1754727256.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=4xpv-9VpP88",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489597",
- "idAPIfootball": "1552864",
- "strTimestamp": "2027-01-16T16:00:00",
- "strEvent": "Angers vs Paris Saint-Germain",
- "strEventAlternate": "Paris Saint-Germain @ Angers",
- "strFilename": "French Ligue 1 2027-01-16 Angers vs Paris Saint-Germain",
+ "idEvent": "2278244",
+ "idAPIfootball": "1387833",
+ "strTimestamp": "2025-12-12T19:45:00",
+ "strEvent": "Angers vs Nantes",
+ "strEventAlternate": "Nantes @ Angers",
+ "strFilename": "French Ligue 1 2025-12-12 Angers vs Nantes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Angers",
- "strAwayTeam": "Paris Saint-Germain",
- "intHomeScore": null,
+ "strAwayTeam": "Nantes",
+ "intHomeScore": "4",
"intRound": "16",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-16",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2025-12-12",
+ "dateEventLocal": "2025-12-12",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
"idHomeTeam": "134709",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
- "idAwayTeam": "133714",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "idAwayTeam": "133861",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "29067",
"strVenue": "Stade Raymond Kopa",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/9veuij1781251486.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/s6g0th1756019945.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/1et2v01781249163.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/q4p4qe1754727268.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=Y1dcvjiF5TI",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489598",
- "idAPIfootball": "1552866",
- "strTimestamp": "2027-01-16T16:00:00",
- "strEvent": "Lyon vs Lorient",
- "strEventAlternate": "Lorient @ Lyon",
- "strFilename": "French Ligue 1 2027-01-16 Lyon vs Lorient",
+ "idEvent": "2278249",
+ "idAPIfootball": "1387838",
+ "strTimestamp": "2025-12-13T18:00:00",
+ "strEvent": "Metz vs Paris Saint-Germain",
+ "strEventAlternate": "Paris SG @ Metz",
+ "strFilename": "French Ligue 1 2025-12-13 Metz vs Paris Saint-Germain",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lyon",
- "strAwayTeam": "Lorient",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Metz",
+ "strAwayTeam": "Paris SG",
+ "intHomeScore": "2",
"intRound": "16",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-16",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133713",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
- "idAwayTeam": "133715",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "dateEvent": "2025-12-13",
+ "dateEventLocal": "2025-12-13",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133883",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
+ "idAwayTeam": "133714",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16131",
- "strVenue": "Groupama Stadium",
+ "strResult": "",
+ "idVenue": "16242",
+ "strVenue": "Stade Saint-Symphorien",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/oz64su1756020453.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/7fr4h11756019963.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9hnfcj1754808874.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7g14hi1754727288.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=UmGbf_31q08",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489599",
- "idAPIfootball": "1552867",
- "strTimestamp": "2027-01-16T16:00:00",
- "strEvent": "Marseille vs Lille",
- "strEventAlternate": "Lille @ Marseille",
- "strFilename": "French Ligue 1 2027-01-16 Marseille vs Lille",
+ "idEvent": "2278250",
+ "idAPIfootball": "1387839",
+ "strTimestamp": "2025-12-13T20:05:00",
+ "strEvent": "Paris FC vs Toulouse",
+ "strEventAlternate": "Toulouse @ Paris FC",
+ "strFilename": "French Ligue 1 2025-12-13 Paris FC vs Toulouse",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Marseille",
- "strAwayTeam": "Lille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris FC",
+ "strAwayTeam": "Toulouse",
+ "intHomeScore": "0",
"intRound": "16",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-16",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133707",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
- "idAwayTeam": "133711",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "dateEvent": "2025-12-13",
+ "dateEventLocal": "2025-12-13",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "135465",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "idAwayTeam": "133703",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "27345",
- "strVenue": "Orange Vélodrome",
+ "strResult": "",
+ "idVenue": "23528",
+ "strVenue": "Stade Jean-Bouin",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/htk9761781251487.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/zepzs81756019966.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/evxwx81781249496.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/aci9kj1754727291.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=GgdrZE2pYiU",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489600",
- "idAPIfootball": "1552869",
- "strTimestamp": "2027-01-16T16:00:00",
- "strEvent": "Nice vs Le Havre",
- "strEventAlternate": "Le Havre @ Nice",
- "strFilename": "French Ligue 1 2027-01-16 Nice vs Le Havre",
+ "idEvent": "2278251",
+ "idAPIfootball": "1387840",
+ "strTimestamp": "2025-12-13T16:00:00",
+ "strEvent": "Rennes vs Brest",
+ "strEventAlternate": "Brest @ Rennes",
+ "strFilename": "French Ligue 1 2025-12-13 Rennes vs Brest",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Nice",
- "strAwayTeam": "Le Havre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Rennes",
+ "strAwayTeam": "Brest",
+ "intHomeScore": "3",
"intRound": "16",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-16",
- "dateEventLocal": null,
+ "dateEvent": "2025-12-13",
+ "dateEventLocal": "2025-12-13",
"strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133712",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
- "idAwayTeam": "133862",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133719",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "idAwayTeam": "133704",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16106",
- "strVenue": "Allianz Riviera",
+ "strResult": "",
+ "idVenue": "16104",
+ "strVenue": "Roazhon Park",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/jt0spn1756020460.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/std32u1756019970.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9yo54e1754808881.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/tazdny1754727295.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=ylvL98baWBc",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489601",
- "idAPIfootball": "1552868",
- "strTimestamp": "2027-01-16T16:00:00",
- "strEvent": "Monaco vs Brest",
- "strEventAlternate": "Brest @ Monaco",
- "strFilename": "French Ligue 1 2027-01-16 Monaco vs Brest",
+ "idEvent": "2278245",
+ "idAPIfootball": "1387834",
+ "strTimestamp": "2025-12-14T16:15:00",
+ "strEvent": "Auxerre vs Lille",
+ "strEventAlternate": "Lille @ Auxerre",
+ "strFilename": "French Ligue 1 2025-12-14 Auxerre vs Lille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Monaco",
- "strAwayTeam": "Brest",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Auxerre",
+ "strAwayTeam": "Lille",
+ "intHomeScore": "3",
"intRound": "16",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-16",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133823",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
- "idAwayTeam": "133704",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "dateEvent": "2025-12-14",
+ "dateEventLocal": "2025-12-14",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134788",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "idAwayTeam": "133711",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16243",
- "strVenue": "Stade Louis II",
- "strCountry": "Monaco",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/nmzmku1756020330.jpg",
+ "strResult": "",
+ "idVenue": "16189",
+ "strVenue": "Stade de l'Abbé Deschamps",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/a6k0u81756019949.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/rzhpk91754808783.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/j5in8s1754727272.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=YhfjJTsI_J4",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489602",
- "idAPIfootball": "1552871",
- "strTimestamp": "2027-01-16T16:00:00",
- "strEvent": "Rennes vs Lens",
- "strEventAlternate": "Lens @ Rennes",
- "strFilename": "French Ligue 1 2027-01-16 Rennes vs Lens",
+ "idEvent": "2278246",
+ "idAPIfootball": "1387835",
+ "strTimestamp": "2025-12-14T16:15:00",
+ "strEvent": "Lens vs Nice",
+ "strEventAlternate": "Nice @ Lens",
+ "strFilename": "French Ligue 1 2025-12-14 Lens vs Nice",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Rennes",
- "strAwayTeam": "Lens",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lens",
+ "strAwayTeam": "Nice",
+ "intHomeScore": "2",
"intRound": "16",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-16",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133719",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
- "idAwayTeam": "133822",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "dateEvent": "2025-12-14",
+ "dateEventLocal": "2025-12-14",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133822",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "idAwayTeam": "133712",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16104",
- "strVenue": "Roazhon Park",
+ "strResult": "",
+ "idVenue": "18385",
+ "strVenue": "Stade Bollaert-Delelis",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ob3d8w1756019632.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/vvtzq61756019952.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bqtbrt1754726913.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/lp3dor1754727276.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=op_IprGizh8",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489603",
- "idAPIfootball": "1552872",
- "strTimestamp": "2027-01-16T16:00:00",
- "strEvent": "Strasbourg vs Le Mans",
- "strEventAlternate": "Le Mans @ Strasbourg",
- "strFilename": "French Ligue 1 2027-01-16 Strasbourg vs Le Mans",
+ "idEvent": "2278247",
+ "idAPIfootball": "1387836",
+ "strTimestamp": "2025-12-14T14:00:00",
+ "strEvent": "Lyon vs Le Havre",
+ "strEventAlternate": "Le Havre @ Lyon",
+ "strFilename": "French Ligue 1 2025-12-14 Lyon vs Le Havre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Strasbourg",
- "strAwayTeam": "Le Mans",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lyon",
+ "strAwayTeam": "Le Havre",
+ "intHomeScore": "1",
"intRound": "16",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-16",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133882",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
- "idAwayTeam": "133848",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "dateEvent": "2025-12-14",
+ "dateEventLocal": "2025-12-14",
+ "strTime": "14:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133713",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "idAwayTeam": "133862",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18120",
- "strVenue": "Stade de la Meinau",
+ "strResult": "",
+ "idVenue": "16131",
+ "strVenue": "Groupama Stadium",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/4q9ubf1781251488.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/gifk331756019956.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/n798211781249165.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/elcpwk1754727280.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=4Epp58L-TCM",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489604",
- "idAPIfootball": "1552865",
- "strTimestamp": "2027-01-16T16:00:00",
- "strEvent": "Auxerre vs Troyes",
- "strEventAlternate": "Troyes @ Auxerre",
- "strFilename": "French Ligue 1 2027-01-16 Auxerre vs Troyes",
+ "idEvent": "2278248",
+ "idAPIfootball": "1387837",
+ "strTimestamp": "2025-12-14T19:45:00",
+ "strEvent": "Marseille vs Monaco",
+ "strEventAlternate": "Monaco @ Marseille",
+ "strFilename": "French Ligue 1 2025-12-14 Marseille vs Monaco",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Auxerre",
- "strAwayTeam": "Troyes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Marseille",
+ "strAwayTeam": "Monaco",
+ "intHomeScore": "1",
"intRound": "16",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-16",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134788",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
- "idAwayTeam": "134789",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
+ "dateEvent": "2025-12-14",
+ "dateEventLocal": "2025-12-14",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133707",
+ "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "idAwayTeam": "133823",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16189",
- "strVenue": "Stade de l'Abbé Deschamps",
+ "strResult": "",
+ "idVenue": "27345",
+ "strVenue": "Orange Vélodrome",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/up5zre1781251795.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/u8kbbw1756019959.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/yxgozj1781249166.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jjf04m1754727284.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=1DYtOuUEmkY",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489605",
- "idAPIfootball": "1552870",
- "strTimestamp": "2027-01-16T16:00:00",
- "strEvent": "Paris FC vs Toulouse",
- "strEventAlternate": "Toulouse @ Paris FC",
- "strFilename": "French Ligue 1 2027-01-16 Paris FC vs Toulouse",
+ "idEvent": "2278252",
+ "idAPIfootball": "1387841",
+ "strTimestamp": "2025-12-14T16:15:00",
+ "strEvent": "Strasbourg vs Lorient",
+ "strEventAlternate": "Lorient @ Strasbourg",
+ "strFilename": "French Ligue 1 2025-12-14 Strasbourg vs Lorient",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris FC",
- "strAwayTeam": "Toulouse",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Strasbourg",
+ "strAwayTeam": "Lorient",
+ "intHomeScore": "0",
"intRound": "16",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-16",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "135465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
- "idAwayTeam": "133703",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "dateEvent": "2025-12-14",
+ "dateEventLocal": "2025-12-14",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133882",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "idAwayTeam": "133715",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "23528",
- "strVenue": "Stade Jean-Bouin",
+ "strResult": "",
+ "idVenue": "18120",
+ "strVenue": "Stade de la Meinau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/zepzs81756019966.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/g4gd7b1756019973.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/aci9kj1754727291.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fonyph1754727299.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=iQO2U3Uuv14",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489606",
- "idAPIfootball": "1552876",
- "strTimestamp": "2027-01-23T16:00:00",
- "strEvent": "Lille vs Paris FC",
- "strEventAlternate": "Paris FC @ Lille",
- "strFilename": "French Ligue 1 2027-01-23 Lille vs Paris FC",
+ "idEvent": "2278261",
+ "idAPIfootball": "1387850",
+ "strTimestamp": "2026-01-02T19:45:00",
+ "strEvent": "Toulouse vs Lens",
+ "strEventAlternate": "Lens @ Toulouse",
+ "strFilename": "French Ligue 1 2026-01-02 Toulouse vs Lens",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lille",
- "strAwayTeam": "Paris FC",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Toulouse",
+ "strAwayTeam": "Lens",
+ "intHomeScore": "0",
"intRound": "17",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-23",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133711",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
- "idAwayTeam": "135465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "dateEvent": "2026-01-02",
+ "dateEventLocal": "2026-01-02",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133703",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "idAwayTeam": "133822",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17390",
- "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
+ "strResult": "",
+ "idVenue": "18238",
+ "strVenue": "Stadium de Toulouse",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/eztd2s1756019861.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/51we0k1756020022.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/lp2x8c1754727176.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qitcd31754808484.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=MNaEPo5NcDk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489607",
- "idAPIfootball": "1552878",
- "strTimestamp": "2027-01-23T16:00:00",
- "strEvent": "Paris Saint-Germain vs Auxerre",
- "strEventAlternate": "Auxerre @ Paris Saint-Germain",
- "strFilename": "French Ligue 1 2027-01-23 Paris Saint-Germain vs Auxerre",
+ "idEvent": "2278255",
+ "idAPIfootball": "1387844",
+ "strTimestamp": "2026-01-03T20:05:00",
+ "strEvent": "Lille vs Rennes",
+ "strEventAlternate": "Rennes @ Lille",
+ "strFilename": "French Ligue 1 2026-01-03 Lille vs Rennes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris Saint-Germain",
- "strAwayTeam": "Auxerre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lille",
+ "strAwayTeam": "Rennes",
+ "intHomeScore": "0",
"intRound": "17",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-23",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133714",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
- "idAwayTeam": "134788",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "dateEvent": "2026-01-03",
+ "dateEventLocal": "2026-01-03",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133711",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "idAwayTeam": "133719",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16024",
- "strVenue": "Parc des Princes",
+ "strResult": "",
+ "idVenue": "17390",
+ "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/0dc9he1781251490.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/4hfawi1756020001.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/hunap31781249167.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/l09vqt1754727310.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=ACJkIcZ_uD4",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489608",
- "idAPIfootball": "1552879",
- "strTimestamp": "2027-01-23T16:00:00",
- "strEvent": "Strasbourg vs Lyon",
- "strEventAlternate": "Lyon @ Strasbourg",
- "strFilename": "French Ligue 1 2027-01-23 Strasbourg vs Lyon",
+ "idEvent": "2278258",
+ "idAPIfootball": "1387847",
+ "strTimestamp": "2026-01-03T16:00:00",
+ "strEvent": "Monaco vs Lyon",
+ "strEventAlternate": "Lyon @ Monaco",
+ "strFilename": "French Ligue 1 2026-01-03 Monaco vs Lyon",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Strasbourg",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Monaco",
"strAwayTeam": "Lyon",
- "intHomeScore": null,
+ "intHomeScore": "1",
"intRound": "17",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-23",
- "dateEventLocal": null,
+ "dateEvent": "2026-01-03",
+ "dateEventLocal": "2026-01-03",
"strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133882",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133823",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"idAwayTeam": "133713",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18120",
- "strVenue": "Stade de la Meinau",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/3kpspr1756020243.jpg",
+ "strResult": "",
+ "idVenue": "16243",
+ "strVenue": "Stade Louis II",
+ "strCountry": "Monaco",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/hnjtbp1756020012.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4jwob71754808675.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hvgdsg1754808473.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=yurdVf3k-zY",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489609",
- "idAPIfootball": "1552880",
- "strTimestamp": "2027-01-23T16:00:00",
- "strEvent": "Toulouse vs Nice",
- "strEventAlternate": "Nice @ Toulouse",
- "strFilename": "French Ligue 1 2027-01-23 Toulouse vs Nice",
+ "idEvent": "2278259",
+ "idAPIfootball": "1387848",
+ "strTimestamp": "2026-01-03T18:00:00",
+ "strEvent": "Nice vs Strasbourg",
+ "strEventAlternate": "Strasbourg @ Nice",
+ "strFilename": "French Ligue 1 2026-01-03 Nice vs Strasbourg",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Toulouse",
- "strAwayTeam": "Nice",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nice",
+ "strAwayTeam": "Strasbourg",
+ "intHomeScore": "1",
"intRound": "17",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-23",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133703",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
- "idAwayTeam": "133712",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "dateEvent": "2026-01-03",
+ "dateEventLocal": "2026-01-03",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133712",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "idAwayTeam": "133882",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18238",
- "strVenue": "Stadium de Toulouse",
+ "strResult": "",
+ "idVenue": "16106",
+ "strVenue": "Allianz Riviera",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/e4a68z1756020071.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/3o289m1756020015.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7mt8og1754808516.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xuf2rf1754808477.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=4FdhM7qluHo",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489610",
- "idAPIfootball": "1552877",
- "strTimestamp": "2027-01-23T16:00:00",
- "strEvent": "Lorient vs Marseille",
- "strEventAlternate": "Marseille @ Lorient",
- "strFilename": "French Ligue 1 2027-01-23 Lorient vs Marseille",
+ "idEvent": "2278253",
+ "idAPIfootball": "1387842",
+ "strTimestamp": "2026-01-04T16:15:00",
+ "strEvent": "Brest vs Auxerre",
+ "strEventAlternate": "Auxerre @ Brest",
+ "strFilename": "French Ligue 1 2026-01-04 Brest vs Auxerre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lorient",
- "strAwayTeam": "Marseille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Brest",
+ "strAwayTeam": "Auxerre",
+ "intHomeScore": "2",
"intRound": "17",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-23",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133715",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
- "idAwayTeam": "133707",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "dateEvent": "2026-01-04",
+ "dateEventLocal": "2026-01-04",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133704",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "idAwayTeam": "134788",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16183",
- "strVenue": "Stade du Moustoir",
+ "strResult": "",
+ "idVenue": "17543",
+ "strVenue": "Stade Francis-Le Blé",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/96ru1d1781251491.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/epxsuk1756019995.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/rhfyxa1781249496.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/o1h5rb1754727303.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=NQhpzbia6jw",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489611",
- "idAPIfootball": "1552881",
- "strTimestamp": "2027-01-23T16:00:00",
- "strEvent": "Troyes vs Monaco",
- "strEventAlternate": "Monaco @ Troyes",
- "strFilename": "French Ligue 1 2027-01-23 Troyes vs Monaco",
+ "idEvent": "2278254",
+ "idAPIfootball": "1387843",
+ "strTimestamp": "2026-01-04T16:15:00",
+ "strEvent": "Le Havre vs Angers",
+ "strEventAlternate": "Angers @ Le Havre",
+ "strFilename": "French Ligue 1 2026-01-04 Le Havre vs Angers",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Troyes",
- "strAwayTeam": "Monaco",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Le Havre",
+ "strAwayTeam": "Angers",
+ "intHomeScore": "2",
"intRound": "17",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-23",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134789",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
- "idAwayTeam": "133823",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "dateEvent": "2026-01-04",
+ "dateEventLocal": "2026-01-04",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133862",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "idAwayTeam": "134709",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16192",
- "strVenue": "Stade de l'Aube",
+ "strResult": "",
+ "idVenue": "16108",
+ "strVenue": "Stade Océane",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/5dl7681781251796.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/5rtm371756019998.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/cm9ll71781249169.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7oz69m1754727307.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=FCTHj9pvM38",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489612",
- "idAPIfootball": "1552873",
- "strTimestamp": "2027-01-23T16:00:00",
- "strEvent": "Le Havre vs Rennes",
- "strEventAlternate": "Rennes @ Le Havre",
- "strFilename": "French Ligue 1 2027-01-23 Le Havre vs Rennes",
+ "idEvent": "2278256",
+ "idAPIfootball": "1387845",
+ "strTimestamp": "2026-01-04T16:15:00",
+ "strEvent": "Lorient vs Metz",
+ "strEventAlternate": "Metz @ Lorient",
+ "strFilename": "French Ligue 1 2026-01-04 Lorient vs Metz",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Havre",
- "strAwayTeam": "Rennes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lorient",
+ "strAwayTeam": "Metz",
+ "intHomeScore": "1",
"intRound": "17",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-23",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133862",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
- "idAwayTeam": "133719",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "dateEvent": "2026-01-04",
+ "dateEventLocal": "2026-01-04",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133715",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "idAwayTeam": "133883",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16108",
- "strVenue": "Stade Océane",
+ "strResult": "",
+ "idVenue": "16183",
+ "strVenue": "Stade du Moustoir",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/by351t1756019649.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/sexszg1756020005.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jqs71k1754726932.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zcf7zw1754727314.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=_005Uvlc4Ss",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489613",
- "idAPIfootball": "1552875",
- "strTimestamp": "2027-01-23T16:00:00",
- "strEvent": "Lens vs Brest",
- "strEventAlternate": "Brest @ Lens",
- "strFilename": "French Ligue 1 2027-01-23 Lens vs Brest",
+ "idEvent": "2360980",
+ "idAPIfootball": "1387846",
+ "strTimestamp": "2026-01-04T14:00:00",
+ "strEvent": "Marseille vs Nantes",
+ "strEventAlternate": "Nantes @ Marseille",
+ "strFilename": "French Ligue 1 2026-01-04 Marseille vs Nantes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lens",
- "strAwayTeam": "Brest",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Marseille",
+ "strAwayTeam": "Nantes",
+ "intHomeScore": "0",
"intRound": "17",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-23",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133822",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
- "idAwayTeam": "133704",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "dateEvent": "2026-01-04",
+ "dateEventLocal": "2026-01-04",
+ "strTime": "14:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133707",
+ "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "idAwayTeam": "133861",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18385",
- "strVenue": "Stade Bollaert-Delelis",
+ "strResult": "",
+ "idVenue": "27345",
+ "strVenue": "Orange Vélodrome",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/4zasrx1756019525.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/dn4sj21756020008.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jf4to61754726778.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hxges21754808469.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=FRH8aCir9hQ",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489614",
- "idAPIfootball": "1552874",
- "strTimestamp": "2027-01-23T16:00:00",
- "strEvent": "Le Mans vs Angers",
- "strEventAlternate": "Angers @ Le Mans",
- "strFilename": "French Ligue 1 2027-01-23 Le Mans vs Angers",
+ "idEvent": "2360981",
+ "idAPIfootball": "1387849",
+ "strTimestamp": "2026-01-04T19:45:00",
+ "strEvent": "Paris Saint-Germain vs Paris FC",
+ "strEventAlternate": "Paris FC @ Paris SG",
+ "strFilename": "French Ligue 1 2026-01-04 Paris Saint-Germain vs Paris FC",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Mans",
- "strAwayTeam": "Angers",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris SG",
+ "strAwayTeam": "Paris FC",
+ "intHomeScore": "2",
"intRound": "17",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-23",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133848",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
- "idAwayTeam": "134709",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "26610",
- "strVenue": "Stade Marie-Marvingt",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/8ie62c1781251491.jpg",
+ "dateEvent": "2026-01-04",
+ "dateEventLocal": "2026-01-04",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133714",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "idAwayTeam": "135465",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "intScore": null,
+ "intScoreVotes": null,
+ "strResult": "",
+ "idVenue": "16024",
+ "strVenue": "Parc des Princes",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/l9fkjp1756020019.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/j17xzy1781249170.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/m8rnbp1754808480.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=EVJSOduUOoM",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489615",
- "idAPIfootball": "1552882",
- "strTimestamp": "2027-01-30T16:00:00",
- "strEvent": "Angers vs Le Havre",
- "strEventAlternate": "Le Havre @ Angers",
- "strFilename": "French Ligue 1 2027-01-30 Angers vs Le Havre",
+ "idEvent": "2278265",
+ "idAPIfootball": "1387854",
+ "strTimestamp": "2026-01-16T18:00:00",
+ "strEvent": "Monaco vs Lorient",
+ "strEventAlternate": "Lorient @ Monaco",
+ "strFilename": "French Ligue 1 2026-01-16 Monaco vs Lorient",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Angers",
- "strAwayTeam": "Le Havre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Monaco",
+ "strAwayTeam": "Lorient",
+ "intHomeScore": "1",
"intRound": "18",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-30",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134709",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
- "idAwayTeam": "133862",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "dateEvent": "2026-01-16",
+ "dateEventLocal": "2026-01-16",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133823",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "idAwayTeam": "133715",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "29067",
- "strVenue": "Stade Raymond Kopa",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/wlpsa91756020473.jpg",
+ "strResult": "",
+ "idVenue": "16243",
+ "strVenue": "Stade Louis II",
+ "strCountry": "Monaco",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/yowtb11756020054.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1kweke1754808895.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7zrjen1754808498.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=44IyEP7BXeA",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489616",
- "idAPIfootball": "1552885",
- "strTimestamp": "2027-01-30T16:00:00",
- "strEvent": "Lyon vs Lille",
- "strEventAlternate": "Lille @ Lyon",
- "strFilename": "French Ligue 1 2027-01-30 Lyon vs Lille",
+ "idEvent": "2278267",
+ "idAPIfootball": "1387856",
+ "strTimestamp": "2026-01-16T20:00:00",
+ "strEvent": "Paris Saint-Germain vs Lille",
+ "strEventAlternate": "Lille @ Paris SG",
+ "strFilename": "French Ligue 1 2026-01-16 Paris Saint-Germain vs Lille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lyon",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris SG",
"strAwayTeam": "Lille",
- "intHomeScore": null,
+ "intHomeScore": "3",
"intRound": "18",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-30",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133713",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "dateEvent": "2026-01-16",
+ "dateEventLocal": "2026-01-16",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133714",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
"idAwayTeam": "133711",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16131",
- "strVenue": "Groupama Stadium",
+ "strResult": "",
+ "idVenue": "16024",
+ "strVenue": "Parc des Princes",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ksxn5a1756020134.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/nmgnhy1756020061.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/eccj3f1754808563.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/guwec41754808505.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=UpgtJInhoVc",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489617",
- "idAPIfootball": "1552886",
- "strTimestamp": "2027-01-30T16:00:00",
- "strEvent": "Marseille vs Troyes",
- "strEventAlternate": "Troyes @ Marseille",
- "strFilename": "French Ligue 1 2027-01-30 Marseille vs Troyes",
+ "idEvent": "2278262",
+ "idAPIfootball": "1387851",
+ "strTimestamp": "2026-01-17T20:05:00",
+ "strEvent": "Angers vs Marseille",
+ "strEventAlternate": "Marseille @ Angers",
+ "strFilename": "French Ligue 1 2026-01-17 Angers vs Marseille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Marseille",
- "strAwayTeam": "Troyes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Angers",
+ "strAwayTeam": "Marseille",
+ "intHomeScore": "2",
"intRound": "18",
- "intAwayScore": null,
+ "intAwayScore": "5",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-30",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133707",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
- "idAwayTeam": "134789",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
+ "dateEvent": "2026-01-17",
+ "dateEventLocal": "2026-01-17",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "134709",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "idAwayTeam": "133707",
+ "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "27345",
- "strVenue": "Orange Vélodrome",
+ "strResult": "",
+ "idVenue": "29067",
+ "strVenue": "Stade Raymond Kopa",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/693qoz1781251796.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/68rbkx1756020026.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/s5kl801781249497.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3uzrrd1754808487.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=Pv9qlmtjgEk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489618",
- "idAPIfootball": "1552887",
- "strTimestamp": "2027-01-30T16:00:00",
- "strEvent": "Monaco vs Paris Saint-Germain",
- "strEventAlternate": "Paris Saint-Germain @ Monaco",
- "strFilename": "French Ligue 1 2027-01-30 Monaco vs Paris Saint-Germain",
+ "idEvent": "2278263",
+ "idAPIfootball": "1387852",
+ "strTimestamp": "2026-01-17T16:00:00",
+ "strEvent": "Lens vs Auxerre",
+ "strEventAlternate": "Auxerre @ Lens",
+ "strFilename": "French Ligue 1 2026-01-17 Lens vs Auxerre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Monaco",
- "strAwayTeam": "Paris Saint-Germain",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lens",
+ "strAwayTeam": "Auxerre",
+ "intHomeScore": "1",
"intRound": "18",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-30",
- "dateEventLocal": null,
+ "dateEvent": "2026-01-17",
+ "dateEventLocal": "2026-01-17",
"strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133823",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
- "idAwayTeam": "133714",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133822",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "idAwayTeam": "134788",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16243",
- "strVenue": "Stade Louis II",
- "strCountry": "Monaco",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/ned9ky1781251493.jpg",
+ "strResult": "",
+ "idVenue": "18385",
+ "strVenue": "Stade Bollaert-Delelis",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/euqgzo1756020047.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/d15v531781249172.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fuif2s1754808491.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=hNTM6wKujeE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489619",
- "idAPIfootball": "1552889",
- "strTimestamp": "2027-01-30T16:00:00",
- "strEvent": "Rennes vs Lorient",
- "strEventAlternate": "Lorient @ Rennes",
- "strFilename": "French Ligue 1 2027-01-30 Rennes vs Lorient",
+ "idEvent": "2278270",
+ "idAPIfootball": "1387859",
+ "strTimestamp": "2026-01-17T18:00:00",
+ "strEvent": "Toulouse vs Nice",
+ "strEventAlternate": "Nice @ Toulouse",
+ "strFilename": "French Ligue 1 2026-01-17 Toulouse vs Nice",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Rennes",
- "strAwayTeam": "Lorient",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Toulouse",
+ "strAwayTeam": "Nice",
+ "intHomeScore": "5",
"intRound": "18",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-30",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133719",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
- "idAwayTeam": "133715",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "dateEvent": "2026-01-17",
+ "dateEventLocal": "2026-01-17",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133703",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "idAwayTeam": "133712",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16104",
- "strVenue": "Roazhon Park",
+ "strResult": "",
+ "idVenue": "18238",
+ "strVenue": "Stadium de Toulouse",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/nb2kcn1756020103.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/e4a68z1756020071.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/lini091754808549.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7mt8og1754808516.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=wVB2xTRDyXw",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489620",
- "idAPIfootball": "1552890",
- "strTimestamp": "2027-01-30T16:00:00",
- "strEvent": "Toulouse vs Lens",
- "strEventAlternate": "Lens @ Toulouse",
- "strFilename": "French Ligue 1 2027-01-30 Toulouse vs Lens",
+ "idEvent": "2278264",
+ "idAPIfootball": "1387853",
+ "strTimestamp": "2026-01-18T19:45:00",
+ "strEvent": "Lyon vs Brest",
+ "strEventAlternate": "Brest @ Lyon",
+ "strFilename": "French Ligue 1 2026-01-18 Lyon vs Brest",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Toulouse",
- "strAwayTeam": "Lens",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lyon",
+ "strAwayTeam": "Brest",
+ "intHomeScore": "2",
"intRound": "18",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-30",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133703",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
- "idAwayTeam": "133822",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "dateEvent": "2026-01-18",
+ "dateEventLocal": "2026-01-18",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133713",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "idAwayTeam": "133704",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18238",
- "strVenue": "Stadium de Toulouse",
+ "strResult": "",
+ "idVenue": "16131",
+ "strVenue": "Groupama Stadium",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/51we0k1756020022.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/5tds3a1756020051.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qitcd31754808484.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mephlx1754808495.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=eN4DMrxwyrA",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489621",
- "idAPIfootball": "1552883",
- "strTimestamp": "2027-01-30T16:00:00",
- "strEvent": "Brest vs Strasbourg",
- "strEventAlternate": "Strasbourg @ Brest",
- "strFilename": "French Ligue 1 2027-01-30 Brest vs Strasbourg",
+ "idEvent": "2278266",
+ "idAPIfootball": "1387855",
+ "strTimestamp": "2026-01-18T16:15:00",
+ "strEvent": "Nantes vs Paris FC",
+ "strEventAlternate": "Paris FC @ Nantes",
+ "strFilename": "French Ligue 1 2026-01-18 Nantes vs Paris FC",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Brest",
- "strAwayTeam": "Strasbourg",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nantes",
+ "strAwayTeam": "Paris FC",
+ "intHomeScore": "1",
"intRound": "18",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-30",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133704",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
- "idAwayTeam": "133882",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "dateEvent": "2026-01-18",
+ "dateEventLocal": "2026-01-18",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133861",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
+ "idAwayTeam": "135465",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17543",
- "strVenue": "Stade Francis-Le Blé",
+ "strResult": "",
+ "idVenue": "16244",
+ "strVenue": "Stade de la Beaujoire - Louis Fonteneau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/8y7ghn1756020446.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/f37c7o1756020057.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/iy2z271754808866.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bw9qoz1754808502.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=EGFu99XkcKE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489622",
- "idAPIfootball": "1552888",
- "strTimestamp": "2027-01-30T16:00:00",
- "strEvent": "Paris FC vs Auxerre",
- "strEventAlternate": "Auxerre @ Paris FC",
- "strFilename": "French Ligue 1 2027-01-30 Paris FC vs Auxerre",
+ "idEvent": "2278268",
+ "idAPIfootball": "1387857",
+ "strTimestamp": "2026-01-18T16:15:00",
+ "strEvent": "Rennes vs Le Havre",
+ "strEventAlternate": "Le Havre @ Rennes",
+ "strFilename": "French Ligue 1 2026-01-18 Rennes vs Le Havre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris FC",
- "strAwayTeam": "Auxerre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Rennes",
+ "strAwayTeam": "Le Havre",
+ "intHomeScore": "1",
"intRound": "18",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-30",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "135465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
- "idAwayTeam": "134788",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "dateEvent": "2026-01-18",
+ "dateEventLocal": "2026-01-18",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133719",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "idAwayTeam": "133862",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "23528",
- "strVenue": "Stade Jean-Bouin",
+ "strResult": "",
+ "idVenue": "16104",
+ "strVenue": "Roazhon Park",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/bzzeym1756019906.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/v9ba1y1756020064.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pvle921754727226.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5yhswd1754808509.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=jX9Yk06xO-I",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489623",
- "idAPIfootball": "1552884",
- "strTimestamp": "2027-01-30T16:00:00",
- "strEvent": "Le Mans vs Nice",
- "strEventAlternate": "Nice @ Le Mans",
- "strFilename": "French Ligue 1 2027-01-30 Le Mans vs Nice",
+ "idEvent": "2278269",
+ "idAPIfootball": "1387858",
+ "strTimestamp": "2026-01-18T14:00:00",
+ "strEvent": "Strasbourg vs Metz",
+ "strEventAlternate": "Metz @ Strasbourg",
+ "strFilename": "French Ligue 1 2026-01-18 Strasbourg vs Metz",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Mans",
- "strAwayTeam": "Nice",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Strasbourg",
+ "strAwayTeam": "Metz",
+ "intHomeScore": "2",
"intRound": "18",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-30",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133848",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
- "idAwayTeam": "133712",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "dateEvent": "2026-01-18",
+ "dateEventLocal": "2026-01-18",
+ "strTime": "14:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133882",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "idAwayTeam": "133883",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "26610",
- "strVenue": "Stade Marie-Marvingt",
+ "strResult": "",
+ "idVenue": "18120",
+ "strVenue": "Stade de la Meinau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/xqc2cc1781251494.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/lzv5ku1756020068.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/ytq9fl1781249173.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/dsdc8p1754808513.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=s8mePausrlk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489624",
- "idAPIfootball": "1552895",
- "strTimestamp": "2027-02-06T16:00:00",
- "strEvent": "Nice vs Brest",
- "strEventAlternate": "Brest @ Nice",
- "strFilename": "French Ligue 1 2027-02-06 Nice vs Brest",
+ "idEvent": "2278271",
+ "idAPIfootball": "1387860",
+ "strTimestamp": "2026-01-23T19:00:00",
+ "strEvent": "Auxerre vs Paris Saint-Germain",
+ "strEventAlternate": "Paris SG @ Auxerre",
+ "strFilename": "French Ligue 1 2026-01-23 Auxerre vs Paris Saint-Germain",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Nice",
- "strAwayTeam": "Brest",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Auxerre",
+ "strAwayTeam": "Paris SG",
+ "intHomeScore": "0",
"intRound": "19",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133712",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
- "idAwayTeam": "133704",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "dateEvent": "2026-01-23",
+ "dateEventLocal": "2026-01-23",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134788",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "idAwayTeam": "133714",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16106",
- "strVenue": "Allianz Riviera",
+ "strResult": "",
+ "idVenue": "16189",
+ "strVenue": "Stade de l'Abbé Deschamps",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/3ojuzn1756020141.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/e2haxj1756020075.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/uln0uf1754808570.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/z1bst51754808520.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=Qm4iV_f0Ic0",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489625",
- "idAPIfootball": "1552896",
- "strTimestamp": "2027-02-06T16:00:00",
- "strEvent": "Rennes vs Lyon",
- "strEventAlternate": "Lyon @ Rennes",
- "strFilename": "French Ligue 1 2027-02-06 Rennes vs Lyon",
+ "idEvent": "2278273",
+ "idAPIfootball": "1387862",
+ "strTimestamp": "2026-01-24T18:00:00",
+ "strEvent": "Le Havre vs Monaco",
+ "strEventAlternate": "Monaco @ Le Havre",
+ "strFilename": "French Ligue 1 2026-01-24 Le Havre vs Monaco",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Rennes",
- "strAwayTeam": "Lyon",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Le Havre",
+ "strAwayTeam": "Monaco",
+ "intHomeScore": "0",
"intRound": "19",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133719",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
- "idAwayTeam": "133713",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "dateEvent": "2026-01-24",
+ "dateEventLocal": "2026-01-24",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133862",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "idAwayTeam": "133823",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16104",
- "strVenue": "Roazhon Park",
+ "strResult": "",
+ "idVenue": "16108",
+ "strVenue": "Stade Océane",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/v3nmv91756019573.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/f6eiim1756020082.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2mrg8e1754726849.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fw1lkz1754808527.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=J_IW1mwvfWY",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489626",
- "idAPIfootball": "1552897",
- "strTimestamp": "2027-02-06T16:00:00",
- "strEvent": "Strasbourg vs Paris FC",
- "strEventAlternate": "Paris FC @ Strasbourg",
- "strFilename": "French Ligue 1 2027-02-06 Strasbourg vs Paris FC",
+ "idEvent": "2278275",
+ "idAPIfootball": "1387864",
+ "strTimestamp": "2026-01-24T20:05:00",
+ "strEvent": "Marseille vs Lens",
+ "strEventAlternate": "Lens @ Marseille",
+ "strFilename": "French Ligue 1 2026-01-24 Marseille vs Lens",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Strasbourg",
- "strAwayTeam": "Paris FC",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Marseille",
+ "strAwayTeam": "Lens",
+ "intHomeScore": "3",
"intRound": "19",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133882",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
- "idAwayTeam": "135465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "dateEvent": "2026-01-24",
+ "dateEventLocal": "2026-01-24",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133707",
+ "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "idAwayTeam": "133822",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18120",
- "strVenue": "Stade de la Meinau",
+ "strResult": "",
+ "idVenue": "27345",
+ "strVenue": "Orange Vélodrome",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/apr5v81756020340.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/7den3e1756020089.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5xvhp11754808794.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ru0jf81754808534.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=m6U9DY_V7QA",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489627",
- "idAPIfootball": "1552894",
- "strTimestamp": "2027-02-06T16:00:00",
- "strEvent": "Lorient vs Le Mans",
- "strEventAlternate": "Le Mans @ Lorient",
- "strFilename": "French Ligue 1 2027-02-06 Lorient vs Le Mans",
+ "idEvent": "2278279",
+ "idAPIfootball": "1387868",
+ "strTimestamp": "2026-01-24T16:00:00",
+ "strEvent": "Rennes vs Lorient",
+ "strEventAlternate": "Lorient @ Rennes",
+ "strFilename": "French Ligue 1 2026-01-24 Rennes vs Lorient",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lorient",
- "strAwayTeam": "Le Mans",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Rennes",
+ "strAwayTeam": "Lorient",
+ "intHomeScore": "0",
"intRound": "19",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-06",
- "dateEventLocal": null,
+ "dateEvent": "2026-01-24",
+ "dateEventLocal": "2026-01-24",
"strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133715",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
- "idAwayTeam": "133848",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133719",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "idAwayTeam": "133715",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16183",
- "strVenue": "Stade du Moustoir",
+ "strResult": "",
+ "idVenue": "16104",
+ "strVenue": "Roazhon Park",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/mhzylg1781251495.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/nb2kcn1756020103.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/s7mge81781249174.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/lini091754808549.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=zoOhGkP1M3E",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489628",
- "idAPIfootball": "1552891",
- "strTimestamp": "2027-02-06T16:00:00",
- "strEvent": "Auxerre vs Monaco",
- "strEventAlternate": "Monaco @ Auxerre",
- "strFilename": "French Ligue 1 2027-02-06 Auxerre vs Monaco",
+ "idEvent": "2278272",
+ "idAPIfootball": "1387861",
+ "strTimestamp": "2026-01-25T16:15:00",
+ "strEvent": "Brest vs Toulouse",
+ "strEventAlternate": "Toulouse @ Brest",
+ "strFilename": "French Ligue 1 2026-01-25 Brest vs Toulouse",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Auxerre",
- "strAwayTeam": "Monaco",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Brest",
+ "strAwayTeam": "Toulouse",
+ "intHomeScore": "0",
"intRound": "19",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134788",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
- "idAwayTeam": "133823",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "dateEvent": "2026-01-25",
+ "dateEventLocal": "2026-01-25",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133704",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "idAwayTeam": "133703",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16189",
- "strVenue": "Stade de l'Abbé Deschamps",
+ "strResult": "",
+ "idVenue": "17543",
+ "strVenue": "Stade Francis-Le Blé",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/e5gj291756019549.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/xknwts1756020079.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/i3i0hg1754726823.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vpa6db1754808524.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=-pqWnRoEYLE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489629",
- "idAPIfootball": "1552898",
- "strTimestamp": "2027-02-06T16:00:00",
- "strEvent": "Troyes vs Lille",
- "strEventAlternate": "Lille @ Troyes",
- "strFilename": "French Ligue 1 2027-02-06 Troyes vs Lille",
+ "idEvent": "2278274",
+ "idAPIfootball": "1387863",
+ "strTimestamp": "2026-01-25T19:45:00",
+ "strEvent": "Lille vs Strasbourg",
+ "strEventAlternate": "Strasbourg @ Lille",
+ "strFilename": "French Ligue 1 2026-01-25 Lille vs Strasbourg",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Troyes",
- "strAwayTeam": "Lille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lille",
+ "strAwayTeam": "Strasbourg",
+ "intHomeScore": "1",
"intRound": "19",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134789",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
- "idAwayTeam": "133711",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "dateEvent": "2026-01-25",
+ "dateEventLocal": "2026-01-25",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133711",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "idAwayTeam": "133882",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16192",
- "strVenue": "Stade de l'Aube",
+ "strResult": "",
+ "idVenue": "17390",
+ "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/4wx2ub1781251797.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/edgtk41756020086.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/xg7c741781249175.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/298bbn1754808531.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=fzmlZ7UK9g4",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489630",
- "idAPIfootball": "1552892",
- "strTimestamp": "2027-02-06T16:00:00",
- "strEvent": "Le Havre vs Toulouse",
- "strEventAlternate": "Toulouse @ Le Havre",
- "strFilename": "French Ligue 1 2027-02-06 Le Havre vs Toulouse",
+ "idEvent": "2278276",
+ "idAPIfootball": "1387865",
+ "strTimestamp": "2026-01-25T16:15:00",
+ "strEvent": "Metz vs Lyon",
+ "strEventAlternate": "Lyon @ Metz",
+ "strFilename": "French Ligue 1 2026-01-25 Metz vs Lyon",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Havre",
- "strAwayTeam": "Toulouse",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Metz",
+ "strAwayTeam": "Lyon",
+ "intHomeScore": "2",
"intRound": "19",
- "intAwayScore": null,
+ "intAwayScore": "5",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133862",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
- "idAwayTeam": "133703",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "dateEvent": "2026-01-25",
+ "dateEventLocal": "2026-01-25",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133883",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
+ "idAwayTeam": "133713",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16108",
- "strVenue": "Stade Océane",
+ "strResult": "",
+ "idVenue": "16242",
+ "strVenue": "Stade Saint-Symphorien",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/7ruh8e1756020187.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/lhz25c1756020092.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/lc3ae71754808618.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/juaglq1754808538.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=f5NQc1GQkls",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489631",
- "idAPIfootball": "1552893",
- "strTimestamp": "2027-02-06T16:00:00",
- "strEvent": "Lens vs Angers",
- "strEventAlternate": "Angers @ Lens",
- "strFilename": "French Ligue 1 2027-02-06 Lens vs Angers",
+ "idEvent": "2278277",
+ "idAPIfootball": "1387866",
+ "strTimestamp": "2026-01-25T14:00:00",
+ "strEvent": "Nantes vs Nice",
+ "strEventAlternate": "Nice @ Nantes",
+ "strFilename": "French Ligue 1 2026-01-25 Nantes vs Nice",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lens",
- "strAwayTeam": "Angers",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nantes",
+ "strAwayTeam": "Nice",
+ "intHomeScore": "1",
"intRound": "19",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133822",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
- "idAwayTeam": "134709",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "dateEvent": "2026-01-25",
+ "dateEventLocal": "2026-01-25",
+ "strTime": "14:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133861",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
+ "idAwayTeam": "133712",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18385",
- "strVenue": "Stade Bollaert-Delelis",
+ "strResult": "",
+ "idVenue": "16244",
+ "strVenue": "Stade de la Beaujoire - Louis Fonteneau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/uuoj2u1756020365.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/err4471756020096.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jyygnr1754808801.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/rxxpsm1754808542.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=QOJt8fAZfC0",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489632",
- "idAPIfootball": "1552899",
- "strTimestamp": "2027-02-07T19:45:00",
- "strEvent": "Paris Saint-Germain vs Marseille",
- "strEventAlternate": "Marseille @ Paris Saint-Germain",
- "strFilename": "French Ligue 1 2027-02-07 Paris Saint-Germain vs Marseille",
+ "idEvent": "2278278",
+ "idAPIfootball": "1387867",
+ "strTimestamp": "2026-01-25T16:15:00",
+ "strEvent": "Paris FC vs Angers",
+ "strEventAlternate": "Angers @ Paris FC",
+ "strFilename": "French Ligue 1 2026-01-25 Paris FC vs Angers",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris Saint-Germain",
- "strAwayTeam": "Marseille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris FC",
+ "strAwayTeam": "Angers",
+ "intHomeScore": "0",
"intRound": "19",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-07",
- "dateEventLocal": null,
- "strTime": "19:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133714",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
- "idAwayTeam": "133707",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "dateEvent": "2026-01-25",
+ "dateEventLocal": "2026-01-25",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "135465",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "idAwayTeam": "134709",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16024",
- "strVenue": "Parc des Princes",
+ "strResult": "",
+ "idVenue": "23528",
+ "strVenue": "Stade Jean-Bouin",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/iuaz3w1781251495.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/zgltbb1756020099.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/hp0w6h1781249498.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/lktxr21754808545.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=Ui3Nv9iYzMo",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489633",
- "idAPIfootball": "1552903",
- "strTimestamp": "2027-02-13T16:00:00",
- "strEvent": "Lille vs Nice",
- "strEventAlternate": "Nice @ Lille",
- "strFilename": "French Ligue 1 2027-02-13 Lille vs Nice",
+ "idEvent": "2278281",
+ "idAPIfootball": "1387870",
+ "strTimestamp": "2026-01-30T19:45:00",
+ "strEvent": "Lens vs Le Havre",
+ "strEventAlternate": "Le Havre @ Lens",
+ "strFilename": "French Ligue 1 2026-01-30 Lens vs Le Havre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lille",
- "strAwayTeam": "Nice",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lens",
+ "strAwayTeam": "Le Havre",
+ "intHomeScore": "1",
"intRound": "20",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133711",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
- "idAwayTeam": "133712",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "dateEvent": "2026-01-30",
+ "dateEventLocal": "2026-01-30",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133822",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "idAwayTeam": "133862",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17390",
- "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
+ "strResult": "",
+ "idVenue": "18385",
+ "strVenue": "Stade Bollaert-Delelis",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/qu1yzz1756020480.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/c0kr3q1756020110.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0u3yvp1754808902.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9olnpq1754808556.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=yVwtPUg6S4E",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489634",
- "idAPIfootball": "1552905",
- "strTimestamp": "2027-02-13T16:00:00",
- "strEvent": "Lyon vs Lens",
- "strEventAlternate": "Lens @ Lyon",
- "strFilename": "French Ligue 1 2027-02-13 Lyon vs Lens",
+ "idEvent": "2278282",
+ "idAPIfootball": "1387871",
+ "strTimestamp": "2026-01-31T18:00:00",
+ "strEvent": "Lorient vs Nantes",
+ "strEventAlternate": "Nantes @ Lorient",
+ "strFilename": "French Ligue 1 2026-01-31 Lorient vs Nantes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lyon",
- "strAwayTeam": "Lens",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lorient",
+ "strAwayTeam": "Nantes",
+ "intHomeScore": "2",
"intRound": "20",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133713",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
- "idAwayTeam": "133822",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "dateEvent": "2026-01-31",
+ "dateEventLocal": "2026-01-31",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133715",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "idAwayTeam": "133861",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16131",
- "strVenue": "Groupama Stadium",
+ "strResult": "",
+ "idVenue": "16183",
+ "strVenue": "Stade du Moustoir",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/7bfk8r1756020627.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/3p89dd1756020113.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fn6e0p1754809089.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/a2co8r1754808560.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=DUnhUvFOebc",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489635",
- "idAPIfootball": "1552906",
- "strTimestamp": "2027-02-13T16:00:00",
- "strEvent": "Marseille vs Angers",
- "strEventAlternate": "Angers @ Marseille",
- "strFilename": "French Ligue 1 2027-02-13 Marseille vs Angers",
+ "idEvent": "2278284",
+ "idAPIfootball": "1387873",
+ "strTimestamp": "2026-01-31T20:05:00",
+ "strEvent": "Monaco vs Rennes",
+ "strEventAlternate": "Rennes @ Monaco",
+ "strFilename": "French Ligue 1 2026-01-31 Monaco vs Rennes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Marseille",
- "strAwayTeam": "Angers",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Monaco",
+ "strAwayTeam": "Rennes",
+ "intHomeScore": "4",
"intRound": "20",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133707",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
- "idAwayTeam": "134709",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "dateEvent": "2026-01-31",
+ "dateEventLocal": "2026-01-31",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133823",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "idAwayTeam": "133719",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "27345",
- "strVenue": "Orange Vélodrome",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/1ar25g1781251496.jpg",
+ "strResult": "",
+ "idVenue": "16243",
+ "strVenue": "Stade Louis II",
+ "strCountry": "Monaco",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/g8zbsz1756020138.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/ig5guy1781249499.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/np8aur1754808567.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=UXrN3Yift3w",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489636",
- "idAPIfootball": "1552908",
- "strTimestamp": "2027-02-13T16:00:00",
- "strEvent": "Toulouse vs Monaco",
- "strEventAlternate": "Monaco @ Toulouse",
- "strFilename": "French Ligue 1 2027-02-13 Toulouse vs Monaco",
+ "idEvent": "2278286",
+ "idAPIfootball": "1387875",
+ "strTimestamp": "2026-01-31T16:00:00",
+ "strEvent": "Paris FC vs Marseille",
+ "strEventAlternate": "Marseille @ Paris FC",
+ "strFilename": "French Ligue 1 2026-01-31 Paris FC vs Marseille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Toulouse",
- "strAwayTeam": "Monaco",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris FC",
+ "strAwayTeam": "Marseille",
+ "intHomeScore": "2",
"intRound": "20",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-13",
- "dateEventLocal": null,
+ "dateEvent": "2026-01-31",
+ "dateEventLocal": "2026-01-31",
"strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133703",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
- "idAwayTeam": "133823",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "135465",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "idAwayTeam": "133707",
+ "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18238",
- "strVenue": "Stadium de Toulouse",
+ "strResult": "",
+ "idVenue": "23528",
+ "strVenue": "Stade Jean-Bouin",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/tn77y71756020532.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/as2cyw1756020145.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yqufb41754808974.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/g6g2031754808574.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=nGhrykmcLvQ",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489637",
- "idAPIfootball": "1552904",
- "strTimestamp": "2027-02-13T16:00:00",
- "strEvent": "Lorient vs Le Havre",
- "strEventAlternate": "Le Havre @ Lorient",
- "strFilename": "French Ligue 1 2027-02-13 Lorient vs Le Havre",
+ "idEvent": "2278280",
+ "idAPIfootball": "1387869",
+ "strTimestamp": "2026-02-01T16:15:00",
+ "strEvent": "Angers vs Metz",
+ "strEventAlternate": "Metz @ Angers",
+ "strFilename": "French Ligue 1 2026-02-01 Angers vs Metz",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lorient",
- "strAwayTeam": "Le Havre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Angers",
+ "strAwayTeam": "Metz",
+ "intHomeScore": "1",
"intRound": "20",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133715",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
- "idAwayTeam": "133862",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "dateEvent": "2026-02-01",
+ "dateEventLocal": "2026-02-01",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134709",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "idAwayTeam": "133883",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16183",
- "strVenue": "Stade du Moustoir",
+ "strResult": "",
+ "idVenue": "29067",
+ "strVenue": "Stade Raymond Kopa",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/miy0tu1756020623.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/v1m7s11756020106.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/s2uusm1754809086.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zf6z4k1754808552.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=BLiwy5-XGhc",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489638",
- "idAPIfootball": "1552901",
- "strTimestamp": "2027-02-13T16:00:00",
- "strEvent": "Brest vs Rennes",
- "strEventAlternate": "Rennes @ Brest",
- "strFilename": "French Ligue 1 2027-02-13 Brest vs Rennes",
+ "idEvent": "2278283",
+ "idAPIfootball": "1387872",
+ "strTimestamp": "2026-02-01T14:00:00",
+ "strEvent": "Lyon vs Lille",
+ "strEventAlternate": "Lille @ Lyon",
+ "strFilename": "French Ligue 1 2026-02-01 Lyon vs Lille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Brest",
- "strAwayTeam": "Rennes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lyon",
+ "strAwayTeam": "Lille",
+ "intHomeScore": "1",
"intRound": "20",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133704",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
- "idAwayTeam": "133719",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "dateEvent": "2026-02-01",
+ "dateEventLocal": "2026-02-01",
+ "strTime": "14:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133713",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "idAwayTeam": "133711",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17543",
- "strVenue": "Stade Francis-Le Blé",
+ "strResult": "",
+ "idVenue": "16131",
+ "strVenue": "Groupama Stadium",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/sfdqlv1756020414.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ksxn5a1756020134.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2z5qcn1754808834.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/eccj3f1754808563.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=FVPipld8Mc4",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489639",
- "idAPIfootball": "1552900",
- "strTimestamp": "2027-02-13T16:00:00",
- "strEvent": "Auxerre vs Strasbourg",
- "strEventAlternate": "Strasbourg @ Auxerre",
- "strFilename": "French Ligue 1 2027-02-13 Auxerre vs Strasbourg",
+ "idEvent": "2278285",
+ "idAPIfootball": "1387874",
+ "strTimestamp": "2026-02-01T16:15:00",
+ "strEvent": "Nice vs Brest",
+ "strEventAlternate": "Brest @ Nice",
+ "strFilename": "French Ligue 1 2026-02-01 Nice vs Brest",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Auxerre",
- "strAwayTeam": "Strasbourg",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nice",
+ "strAwayTeam": "Brest",
+ "intHomeScore": "2",
"intRound": "20",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134788",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
- "idAwayTeam": "133882",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "dateEvent": "2026-02-01",
+ "dateEventLocal": "2026-02-01",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133712",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "idAwayTeam": "133704",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16189",
- "strVenue": "Stade de l'Abbé Deschamps",
+ "strResult": "",
+ "idVenue": "16106",
+ "strVenue": "Allianz Riviera",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/cze4lh1756020281.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/3ojuzn1756020141.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bdb82x1754808733.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/uln0uf1754808570.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=VFVnerqtJNA",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489640",
- "idAPIfootball": "1552907",
- "strTimestamp": "2027-02-13T16:00:00",
- "strEvent": "Paris FC vs Troyes",
- "strEventAlternate": "Troyes @ Paris FC",
- "strFilename": "French Ligue 1 2027-02-13 Paris FC vs Troyes",
+ "idEvent": "2278287",
+ "idAPIfootball": "1387876",
+ "strTimestamp": "2026-02-01T19:45:00",
+ "strEvent": "Strasbourg vs Paris Saint-Germain",
+ "strEventAlternate": "Paris SG @ Strasbourg",
+ "strFilename": "French Ligue 1 2026-02-01 Strasbourg vs Paris Saint-Germain",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris FC",
- "strAwayTeam": "Troyes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Strasbourg",
+ "strAwayTeam": "Paris SG",
+ "intHomeScore": "1",
"intRound": "20",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "135465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
- "idAwayTeam": "134789",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
+ "dateEvent": "2026-02-01",
+ "dateEventLocal": "2026-02-01",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133882",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "idAwayTeam": "133714",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "23528",
- "strVenue": "Stade Jean-Bouin",
+ "strResult": "",
+ "idVenue": "18120",
+ "strVenue": "Stade de la Meinau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/dfv00r1781251798.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/njn25s1756020148.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/5hg9vl1781249178.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7jkl711754808578.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=ChurlAPt5is",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489641",
- "idAPIfootball": "1552902",
- "strTimestamp": "2027-02-13T16:00:00",
- "strEvent": "Le Mans vs Paris Saint-Germain",
- "strEventAlternate": "Paris Saint-Germain @ Le Mans",
- "strFilename": "French Ligue 1 2027-02-13 Le Mans vs Paris Saint-Germain",
+ "idEvent": "2278288",
+ "idAPIfootball": "1387877",
+ "strTimestamp": "2026-02-01T16:15:00",
+ "strEvent": "Toulouse vs Auxerre",
+ "strEventAlternate": "Auxerre @ Toulouse",
+ "strFilename": "French Ligue 1 2026-02-01 Toulouse vs Auxerre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Mans",
- "strAwayTeam": "Paris Saint-Germain",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Toulouse",
+ "strAwayTeam": "Auxerre",
+ "intHomeScore": "0",
"intRound": "20",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133848",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
- "idAwayTeam": "133714",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "dateEvent": "2026-02-01",
+ "dateEventLocal": "2026-02-01",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133703",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "idAwayTeam": "134788",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "26610",
- "strVenue": "Stade Marie-Marvingt",
+ "strResult": "",
+ "idVenue": "18238",
+ "strVenue": "Stadium de Toulouse",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/r4ocjw1781251498.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/p1z6z71756020152.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/kstiul1781249178.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zs6geg1754808581.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=pH1sYsv21-M",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489642",
- "idAPIfootball": "1552909",
- "strTimestamp": "2027-02-20T16:00:00",
- "strEvent": "Angers vs Paris FC",
- "strEventAlternate": "Paris FC @ Angers",
- "strFilename": "French Ligue 1 2027-02-20 Angers vs Paris FC",
+ "idEvent": "2278294",
+ "idAPIfootball": "1387883",
+ "strTimestamp": "2026-02-06T19:45:00",
+ "strEvent": "Metz vs Lille",
+ "strEventAlternate": "Lille @ Metz",
+ "strFilename": "French Ligue 1 2026-02-06 Metz vs Lille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Angers",
- "strAwayTeam": "Paris FC",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Metz",
+ "strAwayTeam": "Lille",
+ "intHomeScore": "0",
"intRound": "21",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134709",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
- "idAwayTeam": "135465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "dateEvent": "2026-02-06",
+ "dateEventLocal": "2026-02-06",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133883",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
+ "idAwayTeam": "133711",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "29067",
- "strVenue": "Stade Raymond Kopa",
+ "strResult": "",
+ "idVenue": "16242",
+ "strVenue": "Stade Saint-Symphorien",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/foru7d1756019437.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/zmlc9x1756020173.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0b83e31754726702.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1se1ud1754808603.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=3uowIrZTKMQ",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489643",
- "idAPIfootball": "1552912",
- "strTimestamp": "2027-02-20T16:00:00",
- "strEvent": "Lille vs Lorient",
- "strEventAlternate": "Lorient @ Lille",
- "strFilename": "French Ligue 1 2027-02-20 Lille vs Lorient",
+ "idEvent": "2278291",
+ "idAPIfootball": "1387880",
+ "strTimestamp": "2026-02-07T18:00:00",
+ "strEvent": "Brest vs Lorient",
+ "strEventAlternate": "Lorient @ Brest",
+ "strFilename": "French Ligue 1 2026-02-07 Brest vs Lorient",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lille",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Brest",
"strAwayTeam": "Lorient",
- "intHomeScore": null,
+ "intHomeScore": "2",
"intRound": "21",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133711",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "dateEvent": "2026-02-07",
+ "dateEventLocal": "2026-02-07",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133704",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"idAwayTeam": "133715",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17390",
- "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
+ "strResult": "",
+ "idVenue": "17543",
+ "strVenue": "Stade Francis-Le Blé",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/qum69r1756020292.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/3zlqyd1756020162.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4yx27g1754808744.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/puf8wq1754808592.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=S8WUVFoiQxw",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489644",
- "idAPIfootball": "1552914",
- "strTimestamp": "2027-02-20T16:00:00",
- "strEvent": "Nice vs Auxerre",
- "strEventAlternate": "Auxerre @ Nice",
- "strFilename": "French Ligue 1 2027-02-20 Nice vs Auxerre",
+ "idEvent": "2278293",
+ "idAPIfootball": "1387882",
+ "strTimestamp": "2026-02-07T16:00:00",
+ "strEvent": "Lens vs Rennes",
+ "strEventAlternate": "Rennes @ Lens",
+ "strFilename": "French Ligue 1 2026-02-07 Lens vs Rennes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Nice",
- "strAwayTeam": "Auxerre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lens",
+ "strAwayTeam": "Rennes",
+ "intHomeScore": "3",
"intRound": "21",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-20",
- "dateEventLocal": null,
+ "dateEvent": "2026-02-07",
+ "dateEventLocal": "2026-02-07",
"strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133712",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
- "idAwayTeam": "134788",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133822",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "idAwayTeam": "133719",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16106",
- "strVenue": "Allianz Riviera",
+ "strResult": "",
+ "idVenue": "18385",
+ "strVenue": "Stade Bollaert-Delelis",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/j4qmtq1756019486.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/jj0d161756020169.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7t7qvc1754726755.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/r6vor21754808599.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=3YNm79SK1b0",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489645",
- "idAPIfootball": "1552915",
- "strTimestamp": "2027-02-20T16:00:00",
- "strEvent": "Paris Saint-Germain vs Brest",
- "strEventAlternate": "Brest @ Paris Saint-Germain",
- "strFilename": "French Ligue 1 2027-02-20 Paris Saint-Germain vs Brest",
+ "idEvent": "2278295",
+ "idAPIfootball": "1387884",
+ "strTimestamp": "2026-02-07T20:05:00",
+ "strEvent": "Nantes vs Lyon",
+ "strEventAlternate": "Lyon @ Nantes",
+ "strFilename": "French Ligue 1 2026-02-07 Nantes vs Lyon",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris Saint-Germain",
- "strAwayTeam": "Brest",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nantes",
+ "strAwayTeam": "Lyon",
+ "intHomeScore": "0",
"intRound": "21",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133714",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
- "idAwayTeam": "133704",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "dateEvent": "2026-02-07",
+ "dateEventLocal": "2026-02-07",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133861",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
+ "idAwayTeam": "133713",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16024",
- "strVenue": "Parc des Princes",
+ "strResult": "",
+ "idVenue": "16244",
+ "strVenue": "Stade de la Beaujoire - Louis Fonteneau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/yikmio1781251499.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/dnjb4c1756020176.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/m5y53h1781249179.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/45u8y21754808607.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=PujDgpEdHrI",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489646",
- "idAPIfootball": "1552913",
- "strTimestamp": "2027-02-20T16:00:00",
- "strEvent": "Monaco vs Le Mans",
- "strEventAlternate": "Le Mans @ Monaco",
- "strFilename": "French Ligue 1 2027-02-20 Monaco vs Le Mans",
+ "idEvent": "2278289",
+ "idAPIfootball": "1387878",
+ "strTimestamp": "2026-02-08T16:15:00",
+ "strEvent": "Angers vs Toulouse",
+ "strEventAlternate": "Toulouse @ Angers",
+ "strFilename": "French Ligue 1 2026-02-08 Angers vs Toulouse",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Monaco",
- "strAwayTeam": "Le Mans",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Angers",
+ "strAwayTeam": "Toulouse",
+ "intHomeScore": "1",
"intRound": "21",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133823",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
- "idAwayTeam": "133848",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "dateEvent": "2026-02-08",
+ "dateEventLocal": "2026-02-08",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134709",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "idAwayTeam": "133703",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16243",
- "strVenue": "Stade Louis II",
- "strCountry": "Monaco",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/j9owty1781251499.jpg",
+ "strResult": "",
+ "idVenue": "29067",
+ "strVenue": "Stade Raymond Kopa",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/1nkxiz1756020155.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/2mfrom1781249180.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/er22td1754808585.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=5a21IEWwrMc",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489647",
- "idAPIfootball": "1552916",
- "strTimestamp": "2027-02-20T16:00:00",
- "strEvent": "Rennes vs Toulouse",
- "strEventAlternate": "Toulouse @ Rennes",
- "strFilename": "French Ligue 1 2027-02-20 Rennes vs Toulouse",
+ "idEvent": "2278290",
+ "idAPIfootball": "1387879",
+ "strTimestamp": "2026-02-08T16:15:00",
+ "strEvent": "Auxerre vs Paris FC",
+ "strEventAlternate": "Paris FC @ Auxerre",
+ "strFilename": "French Ligue 1 2026-02-08 Auxerre vs Paris FC",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Rennes",
- "strAwayTeam": "Toulouse",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Auxerre",
+ "strAwayTeam": "Paris FC",
+ "intHomeScore": "0",
"intRound": "21",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133719",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
- "idAwayTeam": "133703",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "dateEvent": "2026-02-08",
+ "dateEventLocal": "2026-02-08",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134788",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "idAwayTeam": "135465",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16104",
- "strVenue": "Roazhon Park",
+ "strResult": "",
+ "idVenue": "16189",
+ "strVenue": "Stade de l'Abbé Deschamps",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ucms5q1756020274.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/8lqxl01756020159.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/oxrry01754808726.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/owftfm1754808589.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=jbWUnBYovdE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489648",
- "idAPIfootball": "1552917",
- "strTimestamp": "2027-02-20T16:00:00",
- "strEvent": "Strasbourg vs Marseille",
- "strEventAlternate": "Marseille @ Strasbourg",
- "strFilename": "French Ligue 1 2027-02-20 Strasbourg vs Marseille",
+ "idEvent": "2278292",
+ "idAPIfootball": "1387881",
+ "strTimestamp": "2026-02-08T16:15:00",
+ "strEvent": "Le Havre vs Strasbourg",
+ "strEventAlternate": "Strasbourg @ Le Havre",
+ "strFilename": "French Ligue 1 2026-02-08 Le Havre vs Strasbourg",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Strasbourg",
- "strAwayTeam": "Marseille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Le Havre",
+ "strAwayTeam": "Strasbourg",
+ "intHomeScore": "2",
"intRound": "21",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133882",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
- "idAwayTeam": "133707",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "dateEvent": "2026-02-08",
+ "dateEventLocal": "2026-02-08",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133862",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "idAwayTeam": "133882",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18120",
- "strVenue": "Stade de la Meinau",
+ "strResult": "",
+ "idVenue": "16108",
+ "strVenue": "Stade Océane",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/0cugrz1781251501.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/dhgi951756020166.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/ebyytj1781249500.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9wurvx1754808596.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=bAV4G6RERDk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489649",
- "idAPIfootball": "1552910",
- "strTimestamp": "2027-02-20T16:00:00",
- "strEvent": "Le Havre vs Lyon",
- "strEventAlternate": "Lyon @ Le Havre",
- "strFilename": "French Ligue 1 2027-02-20 Le Havre vs Lyon",
+ "idEvent": "2278296",
+ "idAPIfootball": "1387885",
+ "strTimestamp": "2026-02-08T14:00:00",
+ "strEvent": "Nice vs Monaco",
+ "strEventAlternate": "Monaco @ Nice",
+ "strFilename": "French Ligue 1 2026-02-08 Nice vs Monaco",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Havre",
- "strAwayTeam": "Lyon",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nice",
+ "strAwayTeam": "Monaco",
+ "intHomeScore": "0",
"intRound": "21",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133862",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
- "idAwayTeam": "133713",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "dateEvent": "2026-02-08",
+ "dateEventLocal": "2026-02-08",
+ "strTime": "14:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133712",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "idAwayTeam": "133823",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16108",
- "strVenue": "Stade Océane",
+ "strResult": "",
+ "idVenue": "16106",
+ "strVenue": "Allianz Riviera",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/bm5cjt1756020316.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/uejfnq1756020180.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ga46ni1754808769.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/p6mmgr1754808610.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=H9dcHiVI7fI",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489650",
- "idAPIfootball": "1552911",
- "strTimestamp": "2027-02-20T16:00:00",
- "strEvent": "Lens vs Troyes",
- "strEventAlternate": "Troyes @ Lens",
- "strFilename": "French Ligue 1 2027-02-20 Lens vs Troyes",
+ "idEvent": "2278297",
+ "idAPIfootball": "1387886",
+ "strTimestamp": "2026-02-08T19:45:00",
+ "strEvent": "Paris Saint-Germain vs Marseille",
+ "strEventAlternate": "Marseille @ Paris SG",
+ "strFilename": "French Ligue 1 2026-02-08 Paris Saint-Germain vs Marseille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lens",
- "strAwayTeam": "Troyes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris SG",
+ "strAwayTeam": "Marseille",
+ "intHomeScore": "5",
"intRound": "21",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133822",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
- "idAwayTeam": "134789",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
+ "dateEvent": "2026-02-08",
+ "dateEventLocal": "2026-02-08",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133714",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "idAwayTeam": "133707",
+ "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18385",
- "strVenue": "Stade Bollaert-Delelis",
+ "strResult": "",
+ "idVenue": "16024",
+ "strVenue": "Parc des Princes",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/91kgf91781251799.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/s7admu1756020183.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/pcweft1781249182.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0b8dhg1754808614.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=tPuXveQ8Sa0",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489651",
- "idAPIfootball": "1552922",
- "strTimestamp": "2027-02-27T16:00:00",
- "strEvent": "Lyon vs Toulouse",
- "strEventAlternate": "Toulouse @ Lyon",
- "strFilename": "French Ligue 1 2027-02-27 Lyon vs Toulouse",
+ "idEvent": "2278304",
+ "idAPIfootball": "1387893",
+ "strTimestamp": "2026-02-13T20:05:00",
+ "strEvent": "Monaco vs Nantes",
+ "strEventAlternate": "Nantes @ Monaco",
+ "strFilename": "French Ligue 1 2026-02-13 Monaco vs Nantes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lyon",
- "strAwayTeam": "Toulouse",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Monaco",
+ "strAwayTeam": "Nantes",
+ "intHomeScore": "3",
"intRound": "22",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-27",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133713",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
- "idAwayTeam": "133703",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "dateEvent": "2026-02-13",
+ "dateEventLocal": "2026-02-13",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133823",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "idAwayTeam": "133861",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16131",
- "strVenue": "Groupama Stadium",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/tugqvj1756019656.jpg",
+ "strResult": "",
+ "idVenue": "16243",
+ "strVenue": "Stade Louis II",
+ "strCountry": "Monaco",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/a46y601756020207.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5ta91z1754726940.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xhgw5v1754808639.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=vEyqtAlK2Nk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489652",
- "idAPIfootball": "1552923",
- "strTimestamp": "2027-02-27T16:00:00",
- "strEvent": "Marseille vs Rennes",
- "strEventAlternate": "Rennes @ Marseille",
- "strFilename": "French Ligue 1 2027-02-27 Marseille vs Rennes",
+ "idEvent": "2278306",
+ "idAPIfootball": "1387895",
+ "strTimestamp": "2026-02-13T18:00:00",
+ "strEvent": "Rennes vs Paris Saint-Germain",
+ "strEventAlternate": "Paris SG @ Rennes",
+ "strFilename": "French Ligue 1 2026-02-13 Rennes vs Paris Saint-Germain",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Marseille",
- "strAwayTeam": "Rennes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Rennes",
+ "strAwayTeam": "Paris SG",
+ "intHomeScore": "3",
"intRound": "22",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-27",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133707",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
- "idAwayTeam": "133719",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "27345",
- "strVenue": "Orange Vélodrome",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/8tvhap1781251502.jpg",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/q3uilo1781249501.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2489653",
- "idAPIfootball": "1552924",
- "strTimestamp": "2027-02-27T16:00:00",
- "strEvent": "Strasbourg vs Le Havre",
- "strEventAlternate": "Le Havre @ Strasbourg",
- "strFilename": "French Ligue 1 2027-02-27 Strasbourg vs Le Havre",
- "strSport": "Soccer",
- "idLeague": "4334",
- "strLeague": "French Ligue 1",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Strasbourg",
- "strAwayTeam": "Le Havre",
- "intHomeScore": null,
- "intRound": "22",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-02-27",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133882",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
- "idAwayTeam": "133862",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "dateEvent": "2026-02-13",
+ "dateEventLocal": "2026-02-13",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133719",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "idAwayTeam": "133714",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18120",
- "strVenue": "Stade de la Meinau",
+ "strResult": "",
+ "idVenue": "16104",
+ "strVenue": "Roazhon Park",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/5x0ojr1756019576.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/zuv8ml1756020214.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vm0xoz1754726853.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/krsxod1754808646.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=MXX3it10XyQ",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489654",
- "idAPIfootball": "1552921",
- "strTimestamp": "2027-02-27T16:00:00",
- "strEvent": "Lorient vs Angers",
- "strEventAlternate": "Angers @ Lorient",
- "strFilename": "French Ligue 1 2027-02-27 Lorient vs Angers",
+ "idEvent": "2278299",
+ "idAPIfootball": "1387888",
+ "strTimestamp": "2026-02-14T18:00:00",
+ "strEvent": "Lille vs Brest",
+ "strEventAlternate": "Brest @ Lille",
+ "strFilename": "French Ligue 1 2026-02-14 Lille vs Brest",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lorient",
- "strAwayTeam": "Angers",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lille",
+ "strAwayTeam": "Brest",
+ "intHomeScore": "1",
"intRound": "22",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-27",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133715",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
- "idAwayTeam": "134709",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "dateEvent": "2026-02-14",
+ "dateEventLocal": "2026-02-14",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133711",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "idAwayTeam": "133704",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16183",
- "strVenue": "Stade du Moustoir",
+ "strResult": "",
+ "idVenue": "17390",
+ "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/cthvto1756020193.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/b11hz11756020190.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mty1b11754808625.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/g2qz021754808621.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=3vR10_khc8A",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489655",
- "idAPIfootball": "1552919",
- "strTimestamp": "2027-02-27T16:00:00",
- "strEvent": "Brest vs Monaco",
- "strEventAlternate": "Monaco @ Brest",
- "strFilename": "French Ligue 1 2027-02-27 Brest vs Monaco",
+ "idEvent": "2278302",
+ "idAPIfootball": "1387891",
+ "strTimestamp": "2026-02-14T16:00:00",
+ "strEvent": "Marseille vs Strasbourg",
+ "strEventAlternate": "Strasbourg @ Marseille",
+ "strFilename": "French Ligue 1 2026-02-14 Marseille vs Strasbourg",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Brest",
- "strAwayTeam": "Monaco",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Marseille",
+ "strAwayTeam": "Strasbourg",
+ "intHomeScore": "2",
"intRound": "22",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-27",
- "dateEventLocal": null,
+ "dateEvent": "2026-02-14",
+ "dateEventLocal": "2026-02-14",
"strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133704",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
- "idAwayTeam": "133823",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133707",
+ "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "idAwayTeam": "133882",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17543",
- "strVenue": "Stade Francis-Le Blé",
+ "strResult": "",
+ "idVenue": "27345",
+ "strVenue": "Orange Vélodrome",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/v4i76e1756019917.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/68s6131756020200.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hrveem1754727237.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/om95ql1754808632.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=lsyoGw0jPeU",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489656",
- "idAPIfootball": "1552918",
- "strTimestamp": "2027-02-27T16:00:00",
- "strEvent": "Auxerre vs Lille",
- "strEventAlternate": "Lille @ Auxerre",
- "strFilename": "French Ligue 1 2027-02-27 Auxerre vs Lille",
+ "idEvent": "2278305",
+ "idAPIfootball": "1387894",
+ "strTimestamp": "2026-02-14T20:05:00",
+ "strEvent": "Paris FC vs Lens",
+ "strEventAlternate": "Lens @ Paris FC",
+ "strFilename": "French Ligue 1 2026-02-14 Paris FC vs Lens",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Auxerre",
- "strAwayTeam": "Lille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris FC",
+ "strAwayTeam": "Lens",
+ "intHomeScore": "0",
"intRound": "22",
- "intAwayScore": null,
+ "intAwayScore": "5",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-27",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134788",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
- "idAwayTeam": "133711",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "dateEvent": "2026-02-14",
+ "dateEventLocal": "2026-02-14",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "135465",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "idAwayTeam": "133822",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16189",
- "strVenue": "Stade de l'Abbé Deschamps",
+ "strResult": "",
+ "idVenue": "23528",
+ "strVenue": "Stade Jean-Bouin",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/a6k0u81756019949.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/q6llnc1756020211.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/j5in8s1754727272.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/r6yq6j1754808643.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=vh-nqj4gHGY",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489657",
- "idAPIfootball": "1552925",
- "strTimestamp": "2027-02-27T16:00:00",
- "strEvent": "Troyes vs Nice",
- "strEventAlternate": "Nice @ Troyes",
- "strFilename": "French Ligue 1 2027-02-27 Troyes vs Nice",
+ "idEvent": "2278298",
+ "idAPIfootball": "1387887",
+ "strTimestamp": "2026-02-15T14:00:00",
+ "strEvent": "Le Havre vs Toulouse",
+ "strEventAlternate": "Toulouse @ Le Havre",
+ "strFilename": "French Ligue 1 2026-02-15 Le Havre vs Toulouse",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Troyes",
- "strAwayTeam": "Nice",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Le Havre",
+ "strAwayTeam": "Toulouse",
+ "intHomeScore": "2",
"intRound": "22",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-27",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134789",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
- "idAwayTeam": "133712",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "dateEvent": "2026-02-15",
+ "dateEventLocal": "2026-02-15",
+ "strTime": "14:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133862",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "idAwayTeam": "133703",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16192",
- "strVenue": "Stade de l'Aube",
+ "strResult": "",
+ "idVenue": "16108",
+ "strVenue": "Stade Océane",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/cnvfj61781251800.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/7ruh8e1756020187.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/d3bt4d1781249184.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/lc3ae71754808618.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=8NFtZbJntRA",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489658",
- "idAPIfootball": "1552920",
- "strTimestamp": "2027-02-27T16:00:00",
- "strEvent": "Le Mans vs Paris FC",
- "strEventAlternate": "Paris FC @ Le Mans",
- "strFilename": "French Ligue 1 2027-02-27 Le Mans vs Paris FC",
+ "idEvent": "2278300",
+ "idAPIfootball": "1387889",
+ "strTimestamp": "2026-02-15T16:15:00",
+ "strEvent": "Lorient vs Angers",
+ "strEventAlternate": "Angers @ Lorient",
+ "strFilename": "French Ligue 1 2026-02-15 Lorient vs Angers",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Mans",
- "strAwayTeam": "Paris FC",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lorient",
+ "strAwayTeam": "Angers",
+ "intHomeScore": "2",
"intRound": "22",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-27",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133848",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
- "idAwayTeam": "135465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "dateEvent": "2026-02-15",
+ "dateEventLocal": "2026-02-15",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133715",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "idAwayTeam": "134709",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "26610",
- "strVenue": "Stade Marie-Marvingt",
+ "strResult": "",
+ "idVenue": "16183",
+ "strVenue": "Stade du Moustoir",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/7rg5no1781251503.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/cthvto1756020193.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/53k3ov1781249185.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mty1b11754808625.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=ZPS7kwp0BHc",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489659",
- "idAPIfootball": "1552926",
- "strTimestamp": "2027-02-28T19:45:00",
- "strEvent": "Paris Saint-Germain vs Lens",
- "strEventAlternate": "Lens @ Paris Saint-Germain",
- "strFilename": "French Ligue 1 2027-02-28 Paris Saint-Germain vs Lens",
+ "idEvent": "2278301",
+ "idAPIfootball": "1387890",
+ "strTimestamp": "2026-02-15T19:45:00",
+ "strEvent": "Lyon vs Nice",
+ "strEventAlternate": "Nice @ Lyon",
+ "strFilename": "French Ligue 1 2026-02-15 Lyon vs Nice",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris Saint-Germain",
- "strAwayTeam": "Lens",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lyon",
+ "strAwayTeam": "Nice",
+ "intHomeScore": "2",
"intRound": "22",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-28",
- "dateEventLocal": null,
+ "dateEvent": "2026-02-15",
+ "dateEventLocal": "2026-02-15",
"strTime": "19:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133714",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
- "idAwayTeam": "133822",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133713",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "idAwayTeam": "133712",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16024",
- "strVenue": "Parc des Princes",
+ "strResult": "",
+ "idVenue": "16131",
+ "strVenue": "Groupama Stadium",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/x54cxy1781251504.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/jwsof81756020197.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/fz5hln1781249186.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0vn4sk1754808628.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=Gv-3maKUQrY",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489660",
- "idAPIfootball": "1552927",
- "strTimestamp": "2027-03-06T16:00:00",
- "strEvent": "Angers vs Auxerre",
- "strEventAlternate": "Auxerre @ Angers",
- "strFilename": "French Ligue 1 2027-03-06 Angers vs Auxerre",
+ "idEvent": "2278303",
+ "idAPIfootball": "1387892",
+ "strTimestamp": "2026-02-15T16:15:00",
+ "strEvent": "Metz vs Auxerre",
+ "strEventAlternate": "Auxerre @ Metz",
+ "strFilename": "French Ligue 1 2026-02-15 Metz vs Auxerre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Angers",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Metz",
"strAwayTeam": "Auxerre",
- "intHomeScore": null,
- "intRound": "23",
- "intAwayScore": null,
+ "intHomeScore": "1",
+ "intRound": "22",
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134709",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "dateEvent": "2026-02-15",
+ "dateEventLocal": "2026-02-15",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133883",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
"idAwayTeam": "134788",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "29067",
- "strVenue": "Stade Raymond Kopa",
+ "strResult": "",
+ "idVenue": "16242",
+ "strVenue": "Stade Saint-Symphorien",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/1dcjbw1756019819.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/qmdxrk1756020204.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1z64v51754727131.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7k9mo11754808636.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=ev-01v0KyRk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489661",
- "idAPIfootball": "1552930",
- "strTimestamp": "2027-03-06T16:00:00",
- "strEvent": "Lille vs Marseille",
- "strEventAlternate": "Marseille @ Lille",
- "strFilename": "French Ligue 1 2027-03-06 Lille vs Marseille",
+ "idEvent": "2278309",
+ "idAPIfootball": "1387898",
+ "strTimestamp": "2026-02-20T19:45:00",
+ "strEvent": "Brest vs Marseille",
+ "strEventAlternate": "Marseille @ Brest",
+ "strFilename": "French Ligue 1 2026-02-20 Brest vs Marseille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lille",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Brest",
"strAwayTeam": "Marseille",
- "intHomeScore": null,
+ "intHomeScore": "2",
"intRound": "23",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133711",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "dateEvent": "2026-02-20",
+ "dateEventLocal": "2026-02-20",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133704",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"idAwayTeam": "133707",
"strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17390",
- "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
+ "strResult": "",
+ "idVenue": "17543",
+ "strVenue": "Stade Francis-Le Blé",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/s865041781251507.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/1evmgl1756020225.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/2me4l01781249502.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/c7s2rd1754808657.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=bC2nB5XiSTU",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489662",
- "idAPIfootball": "1552931",
- "strTimestamp": "2027-03-06T16:00:00",
- "strEvent": "Monaco vs Lyon",
- "strEventAlternate": "Lyon @ Monaco",
- "strFilename": "French Ligue 1 2027-03-06 Monaco vs Lyon",
+ "idEvent": "2278310",
+ "idAPIfootball": "1387899",
+ "strTimestamp": "2026-02-21T16:00:00",
+ "strEvent": "Lens vs Monaco",
+ "strEventAlternate": "Monaco @ Lens",
+ "strFilename": "French Ligue 1 2026-02-21 Lens vs Monaco",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Monaco",
- "strAwayTeam": "Lyon",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lens",
+ "strAwayTeam": "Monaco",
+ "intHomeScore": "2",
"intRound": "23",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-06",
- "dateEventLocal": null,
+ "dateEvent": "2026-02-21",
+ "dateEventLocal": "2026-02-21",
"strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133823",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
- "idAwayTeam": "133713",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133822",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "idAwayTeam": "133823",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16243",
- "strVenue": "Stade Louis II",
- "strCountry": "Monaco",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/hnjtbp1756020012.jpg",
+ "strResult": "",
+ "idVenue": "18385",
+ "strVenue": "Stade Bollaert-Delelis",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/nxkvpe1756020229.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hvgdsg1754808473.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/50fc4c1754808661.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=2RuUwvzh0Xg",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489663",
- "idAPIfootball": "1552933",
- "strTimestamp": "2027-03-06T16:00:00",
- "strEvent": "Rennes vs Paris Saint-Germain",
- "strEventAlternate": "Paris Saint-Germain @ Rennes",
- "strFilename": "French Ligue 1 2027-03-06 Rennes vs Paris Saint-Germain",
+ "idEvent": "2278313",
+ "idAPIfootball": "1387902",
+ "strTimestamp": "2026-02-21T20:05:00",
+ "strEvent": "Paris Saint-Germain vs Metz",
+ "strEventAlternate": "Metz @ Paris SG",
+ "strFilename": "French Ligue 1 2026-02-21 Paris Saint-Germain vs Metz",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Rennes",
- "strAwayTeam": "Paris Saint-Germain",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris SG",
+ "strAwayTeam": "Metz",
+ "intHomeScore": "3",
"intRound": "23",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133719",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
- "idAwayTeam": "133714",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "dateEvent": "2026-02-21",
+ "dateEventLocal": "2026-02-21",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133714",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "idAwayTeam": "133883",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16104",
- "strVenue": "Roazhon Park",
+ "strResult": "",
+ "idVenue": "16024",
+ "strVenue": "Parc des Princes",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/nqtkie1781251508.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/zi3aqh1756020239.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/yzp7oc1781249187.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/uh2wpq1754808672.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=s8mCRoPkIHA",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489664",
- "idAPIfootball": "1552934",
- "strTimestamp": "2027-03-06T16:00:00",
- "strEvent": "Toulouse vs Le Mans",
- "strEventAlternate": "Le Mans @ Toulouse",
- "strFilename": "French Ligue 1 2027-03-06 Toulouse vs Le Mans",
+ "idEvent": "2278315",
+ "idAPIfootball": "1387904",
+ "strTimestamp": "2026-02-21T18:00:00",
+ "strEvent": "Toulouse vs Paris FC",
+ "strEventAlternate": "Paris FC @ Toulouse",
+ "strFilename": "French Ligue 1 2026-02-21 Toulouse vs Paris FC",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Toulouse",
- "strAwayTeam": "Le Mans",
- "intHomeScore": null,
+ "strAwayTeam": "Paris FC",
+ "intHomeScore": "1",
"intRound": "23",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-02-21",
+ "dateEventLocal": "2026-02-21",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
"idHomeTeam": "133703",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
- "idAwayTeam": "133848",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "idAwayTeam": "135465",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "18238",
"strVenue": "Stadium de Toulouse",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/4be1681781251509.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/u37m1k1756020246.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/xtgf4h1781249188.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jr7le51754808697.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=uhDHMD9ocr8",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489665",
- "idAPIfootball": "1552935",
- "strTimestamp": "2027-03-06T16:00:00",
- "strEvent": "Troyes vs Lorient",
- "strEventAlternate": "Lorient @ Troyes",
- "strFilename": "French Ligue 1 2027-03-06 Troyes vs Lorient",
+ "idEvent": "2278307",
+ "idAPIfootball": "1387896",
+ "strTimestamp": "2026-02-22T16:15:00",
+ "strEvent": "Angers vs Lille",
+ "strEventAlternate": "Lille @ Angers",
+ "strFilename": "French Ligue 1 2026-02-22 Angers vs Lille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Troyes",
- "strAwayTeam": "Lorient",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Angers",
+ "strAwayTeam": "Lille",
+ "intHomeScore": "0",
"intRound": "23",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134789",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
- "idAwayTeam": "133715",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "dateEvent": "2026-02-22",
+ "dateEventLocal": "2026-02-22",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134709",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "idAwayTeam": "133711",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16192",
- "strVenue": "Stade de l'Aube",
+ "strResult": "",
+ "idVenue": "29067",
+ "strVenue": "Stade Raymond Kopa",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/cwlus71781251801.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/qvwo0b1756020218.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/qpbym91781249189.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/gk242j1754808650.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=qOn39cOHKDk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489666",
- "idAPIfootball": "1552928",
- "strTimestamp": "2027-03-06T16:00:00",
- "strEvent": "Le Havre vs Nice",
- "strEventAlternate": "Nice @ Le Havre",
- "strFilename": "French Ligue 1 2027-03-06 Le Havre vs Nice",
+ "idEvent": "2278308",
+ "idAPIfootball": "1387897",
+ "strTimestamp": "2026-02-22T14:00:00",
+ "strEvent": "Auxerre vs Rennes",
+ "strEventAlternate": "Rennes @ Auxerre",
+ "strFilename": "French Ligue 1 2026-02-22 Auxerre vs Rennes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Havre",
- "strAwayTeam": "Nice",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Auxerre",
+ "strAwayTeam": "Rennes",
+ "intHomeScore": "0",
"intRound": "23",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133862",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
- "idAwayTeam": "133712",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "dateEvent": "2026-02-22",
+ "dateEventLocal": "2026-02-22",
+ "strTime": "14:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134788",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "idAwayTeam": "133719",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16108",
- "strVenue": "Stade Océane",
+ "strResult": "",
+ "idVenue": "16189",
+ "strVenue": "Stade de l'Abbé Deschamps",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/12ojti1756019503.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/wiuubf1756020221.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/de71681754726774.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7us3t81754808654.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=LwnbnOi880M",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489667",
- "idAPIfootball": "1552932",
- "strTimestamp": "2027-03-06T16:00:00",
- "strEvent": "Paris FC vs Brest",
- "strEventAlternate": "Brest @ Paris FC",
- "strFilename": "French Ligue 1 2027-03-06 Paris FC vs Brest",
+ "idEvent": "2278311",
+ "idAPIfootball": "1387900",
+ "strTimestamp": "2026-02-22T16:15:00",
+ "strEvent": "Nantes vs Le Havre",
+ "strEventAlternate": "Le Havre @ Nantes",
+ "strFilename": "French Ligue 1 2026-02-22 Nantes vs Le Havre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris FC",
- "strAwayTeam": "Brest",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nantes",
+ "strAwayTeam": "Le Havre",
+ "intHomeScore": "2",
"intRound": "23",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "135465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
- "idAwayTeam": "133704",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "dateEvent": "2026-02-22",
+ "dateEventLocal": "2026-02-22",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133861",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
+ "idAwayTeam": "133862",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "23528",
- "strVenue": "Stade Jean-Bouin",
+ "strResult": "",
+ "idVenue": "16244",
+ "strVenue": "Stade de la Beaujoire - Louis Fonteneau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/tnkxtf1756020556.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/b5wpov1756020232.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4hn07i1754809017.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4nt02x1754808664.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=kTy46R3Aemw",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489668",
- "idAPIfootball": "1552929",
- "strTimestamp": "2027-03-06T16:00:00",
- "strEvent": "Lens vs Strasbourg",
- "strEventAlternate": "Strasbourg @ Lens",
- "strFilename": "French Ligue 1 2027-03-06 Lens vs Strasbourg",
+ "idEvent": "2278312",
+ "idAPIfootball": "1387901",
+ "strTimestamp": "2026-02-22T16:15:00",
+ "strEvent": "Nice vs Lorient",
+ "strEventAlternate": "Lorient @ Nice",
+ "strFilename": "French Ligue 1 2026-02-22 Nice vs Lorient",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lens",
- "strAwayTeam": "Strasbourg",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nice",
+ "strAwayTeam": "Lorient",
+ "intHomeScore": "3",
"intRound": "23",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133822",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
- "idAwayTeam": "133882",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "dateEvent": "2026-02-22",
+ "dateEventLocal": "2026-02-22",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133712",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "idAwayTeam": "133715",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18385",
- "strVenue": "Stade Bollaert-Delelis",
+ "strResult": "",
+ "idVenue": "16106",
+ "strVenue": "Allianz Riviera",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/q3np8l1756019857.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/uu1iu61756020236.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/l10k6a1754727172.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pq38jj1754808668.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=esfT7smpCFk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489669",
- "idAPIfootball": "1552940",
- "strTimestamp": "2027-03-13T16:00:00",
- "strEvent": "Lyon vs Troyes",
- "strEventAlternate": "Troyes @ Lyon",
- "strFilename": "French Ligue 1 2027-03-13 Lyon vs Troyes",
+ "idEvent": "2278314",
+ "idAPIfootball": "1387903",
+ "strTimestamp": "2026-02-22T19:45:00",
+ "strEvent": "Strasbourg vs Lyon",
+ "strEventAlternate": "Lyon @ Strasbourg",
+ "strFilename": "French Ligue 1 2026-02-22 Strasbourg vs Lyon",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lyon",
- "strAwayTeam": "Troyes",
- "intHomeScore": null,
- "intRound": "24",
- "intAwayScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Strasbourg",
+ "strAwayTeam": "Lyon",
+ "intHomeScore": "3",
+ "intRound": "23",
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133713",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
- "idAwayTeam": "134789",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
+ "dateEvent": "2026-02-22",
+ "dateEventLocal": "2026-02-22",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133882",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "idAwayTeam": "133713",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16131",
- "strVenue": "Groupama Stadium",
+ "strResult": "",
+ "idVenue": "18120",
+ "strVenue": "Stade de la Meinau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/odvp7f1781251804.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/3kpspr1756020243.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/bewiwp1781249190.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4jwob71754808675.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=SvgceBMrijI",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489670",
- "idAPIfootball": "1552941",
- "strTimestamp": "2027-03-13T16:00:00",
- "strEvent": "Marseille vs Monaco",
- "strEventAlternate": "Monaco @ Marseille",
- "strFilename": "French Ligue 1 2027-03-13 Marseille vs Monaco",
+ "idEvent": "2278324",
+ "idAPIfootball": "1387913",
+ "strTimestamp": "2026-02-27T19:45:00",
+ "strEvent": "Strasbourg vs Lens",
+ "strEventAlternate": "Lens @ Strasbourg",
+ "strFilename": "French Ligue 1 2026-02-27 Strasbourg vs Lens",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Marseille",
- "strAwayTeam": "Monaco",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Strasbourg",
+ "strAwayTeam": "Lens",
+ "intHomeScore": "1",
"intRound": "24",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133707",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
- "idAwayTeam": "133823",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "dateEvent": "2026-02-27",
+ "dateEventLocal": "2026-02-27",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133882",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "idAwayTeam": "133822",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "27345",
- "strVenue": "Orange Vélodrome",
+ "strResult": "",
+ "idVenue": "18120",
+ "strVenue": "Stade de la Meinau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/ig7jrb1781251510.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/enicra1756020278.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/l4wio51781249503.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/784uyx1754808729.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=3ZfA6K8X_-8",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489671",
- "idAPIfootball": "1552942",
- "strTimestamp": "2027-03-13T16:00:00",
- "strEvent": "Nice vs Toulouse",
- "strEventAlternate": "Toulouse @ Nice",
- "strFilename": "French Ligue 1 2027-03-13 Nice vs Toulouse",
+ "idEvent": "2278316",
+ "idAPIfootball": "1387905",
+ "strTimestamp": "2026-02-28T20:05:00",
+ "strEvent": "Le Havre vs Paris Saint-Germain",
+ "strEventAlternate": "Paris SG @ Le Havre",
+ "strFilename": "French Ligue 1 2026-02-28 Le Havre vs Paris Saint-Germain",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Nice",
- "strAwayTeam": "Toulouse",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Le Havre",
+ "strAwayTeam": "Paris SG",
+ "intHomeScore": "0",
"intRound": "24",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133712",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
- "idAwayTeam": "133703",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "dateEvent": "2026-02-28",
+ "dateEventLocal": "2026-02-28",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133862",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "idAwayTeam": "133714",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16106",
- "strVenue": "Allianz Riviera",
+ "strResult": "",
+ "idVenue": "16108",
+ "strVenue": "Stade Océane",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/zl28q61756019461.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/sw2paw1756020250.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9j7rh81754726729.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/462bk01754808700.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=XjeGLKFw05k",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489672",
- "idAPIfootball": "1552944",
- "strTimestamp": "2027-03-13T16:00:00",
- "strEvent": "Strasbourg vs Angers",
- "strEventAlternate": "Angers @ Strasbourg",
- "strFilename": "French Ligue 1 2027-03-13 Strasbourg vs Angers",
+ "idEvent": "2278321",
+ "idAPIfootball": "1387910",
+ "strTimestamp": "2026-02-28T18:00:00",
+ "strEvent": "Monaco vs Angers",
+ "strEventAlternate": "Angers @ Monaco",
+ "strFilename": "French Ligue 1 2026-02-28 Monaco vs Angers",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Strasbourg",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Monaco",
"strAwayTeam": "Angers",
- "intHomeScore": null,
+ "intHomeScore": "2",
"intRound": "24",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133882",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "dateEvent": "2026-02-28",
+ "dateEventLocal": "2026-02-28",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133823",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"idAwayTeam": "134709",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18120",
- "strVenue": "Stade de la Meinau",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/n302dw1756019670.jpg",
+ "strResult": "",
+ "idVenue": "16243",
+ "strVenue": "Stade Louis II",
+ "strCountry": "Monaco",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/54d25o1756020267.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4tgc1u1754726955.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5ehg581754808719.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=LbRkAHYt-U8",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489673",
- "idAPIfootball": "1552937",
- "strTimestamp": "2027-03-13T16:00:00",
- "strEvent": "Brest vs Lille",
- "strEventAlternate": "Lille @ Brest",
- "strFilename": "French Ligue 1 2027-03-13 Brest vs Lille",
+ "idEvent": "2278323",
+ "idAPIfootball": "1387912",
+ "strTimestamp": "2026-02-28T16:00:00",
+ "strEvent": "Rennes vs Toulouse",
+ "strEventAlternate": "Toulouse @ Rennes",
+ "strFilename": "French Ligue 1 2026-02-28 Rennes vs Toulouse",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Brest",
- "strAwayTeam": "Lille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Rennes",
+ "strAwayTeam": "Toulouse",
+ "intHomeScore": "1",
"intRound": "24",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-13",
- "dateEventLocal": null,
+ "dateEvent": "2026-02-28",
+ "dateEventLocal": "2026-02-28",
"strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133704",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
- "idAwayTeam": "133711",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133719",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "idAwayTeam": "133703",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17543",
- "strVenue": "Stade Francis-Le Blé",
+ "strResult": "",
+ "idVenue": "16104",
+ "strVenue": "Roazhon Park",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/80wp201756019444.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ucms5q1756020274.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/c17mzj1754726710.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/oxrry01754808726.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=-HT_r8LEJhc",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489674",
- "idAPIfootball": "1552936",
- "strTimestamp": "2027-03-13T16:00:00",
- "strEvent": "Auxerre vs Paris Saint-Germain",
- "strEventAlternate": "Paris Saint-Germain @ Auxerre",
- "strFilename": "French Ligue 1 2027-03-13 Auxerre vs Paris Saint-Germain",
+ "idEvent": "2278317",
+ "idAPIfootball": "1387906",
+ "strTimestamp": "2026-03-01T16:15:00",
+ "strEvent": "Lille vs Nantes",
+ "strEventAlternate": "Nantes @ Lille",
+ "strFilename": "French Ligue 1 2026-03-01 Lille vs Nantes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Auxerre",
- "strAwayTeam": "Paris Saint-Germain",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lille",
+ "strAwayTeam": "Nantes",
+ "intHomeScore": "1",
"intRound": "24",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134788",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
- "idAwayTeam": "133714",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "dateEvent": "2026-03-01",
+ "dateEventLocal": "2026-03-01",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133711",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "idAwayTeam": "133861",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16189",
- "strVenue": "Stade de l'Abbé Deschamps",
+ "strResult": "",
+ "idVenue": "17390",
+ "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/9nthhf1781251511.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/w74ae61756020253.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/404b6c1781249192.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/91j0iv1754808704.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=24GhiUTdboA",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489675",
- "idAPIfootball": "1552938",
- "strTimestamp": "2027-03-13T16:00:00",
- "strEvent": "Le Havre vs Lens",
- "strEventAlternate": "Lens @ Le Havre",
- "strFilename": "French Ligue 1 2027-03-13 Le Havre vs Lens",
+ "idEvent": "2278318",
+ "idAPIfootball": "1387907",
+ "strTimestamp": "2026-03-01T16:15:00",
+ "strEvent": "Lorient vs Auxerre",
+ "strEventAlternate": "Auxerre @ Lorient",
+ "strFilename": "French Ligue 1 2026-03-01 Lorient vs Auxerre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Havre",
- "strAwayTeam": "Lens",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lorient",
+ "strAwayTeam": "Auxerre",
+ "intHomeScore": "2",
"intRound": "24",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133862",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
- "idAwayTeam": "133822",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "dateEvent": "2026-03-01",
+ "dateEventLocal": "2026-03-01",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133715",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "idAwayTeam": "134788",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16108",
- "strVenue": "Stade Océane",
+ "strResult": "",
+ "idVenue": "16183",
+ "strVenue": "Stade du Moustoir",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/02rk9g1756019468.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/sbh8pi1756020257.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vdt6311754726736.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/31zqgn1754808708.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=a0biHDoz3UQ",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489676",
- "idAPIfootball": "1552943",
- "strTimestamp": "2027-03-13T16:00:00",
- "strEvent": "Paris FC vs Lorient",
- "strEventAlternate": "Lorient @ Paris FC",
- "strFilename": "French Ligue 1 2027-03-13 Paris FC vs Lorient",
+ "idEvent": "2278319",
+ "idAPIfootball": "1387908",
+ "strTimestamp": "2026-03-01T19:45:00",
+ "strEvent": "Marseille vs Lyon",
+ "strEventAlternate": "Lyon @ Marseille",
+ "strFilename": "French Ligue 1 2026-03-01 Marseille vs Lyon",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris FC",
- "strAwayTeam": "Lorient",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Marseille",
+ "strAwayTeam": "Lyon",
+ "intHomeScore": "3",
"intRound": "24",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "135465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
- "idAwayTeam": "133715",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "dateEvent": "2026-03-01",
+ "dateEventLocal": "2026-03-01",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133707",
+ "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "idAwayTeam": "133713",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "23528",
- "strVenue": "Stade Jean-Bouin",
+ "strResult": "",
+ "idVenue": "27345",
+ "strVenue": "Orange Vélodrome",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/jzp3wx1756019667.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/03ffd91756020260.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/rxh69v1754726951.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/l2unkk1754808711.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=0mtDAuJhEew",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489677",
- "idAPIfootball": "1552939",
- "strTimestamp": "2027-03-13T16:00:00",
- "strEvent": "Le Mans vs Rennes",
- "strEventAlternate": "Rennes @ Le Mans",
- "strFilename": "French Ligue 1 2027-03-13 Le Mans vs Rennes",
+ "idEvent": "2278320",
+ "idAPIfootball": "1387909",
+ "strTimestamp": "2026-03-01T16:15:00",
+ "strEvent": "Metz vs Brest",
+ "strEventAlternate": "Brest @ Metz",
+ "strFilename": "French Ligue 1 2026-03-01 Metz vs Brest",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Mans",
- "strAwayTeam": "Rennes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Metz",
+ "strAwayTeam": "Brest",
+ "intHomeScore": "0",
"intRound": "24",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133848",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
- "idAwayTeam": "133719",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "dateEvent": "2026-03-01",
+ "dateEventLocal": "2026-03-01",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133883",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
+ "idAwayTeam": "133704",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "26610",
- "strVenue": "Stade Marie-Marvingt",
+ "strResult": "",
+ "idVenue": "16242",
+ "strVenue": "Stade Saint-Symphorien",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/zy68mc1781251512.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/axpach1756020263.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/2q43ro1781249193.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xhj6bp1754808715.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=mH39-eLU_zk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489678",
- "idAPIfootball": "1552945",
- "strTimestamp": "2027-03-20T16:00:00",
- "strEvent": "Angers vs Le Mans",
- "strEventAlternate": "Le Mans @ Angers",
- "strFilename": "French Ligue 1 2027-03-20 Angers vs Le Mans",
+ "idEvent": "2278322",
+ "idAPIfootball": "1387911",
+ "strTimestamp": "2026-03-01T14:00:00",
+ "strEvent": "Paris FC vs Nice",
+ "strEventAlternate": "Nice @ Paris FC",
+ "strFilename": "French Ligue 1 2026-03-01 Paris FC vs Nice",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Angers",
- "strAwayTeam": "Le Mans",
- "intHomeScore": null,
- "intRound": "25",
- "intAwayScore": null,
- "intSpectators": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris FC",
+ "strAwayTeam": "Nice",
+ "intHomeScore": "1",
+ "intRound": "24",
+ "intAwayScore": "0",
+ "intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134709",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
- "idAwayTeam": "133848",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "dateEvent": "2026-03-01",
+ "dateEventLocal": "2026-03-01",
+ "strTime": "14:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "135465",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "idAwayTeam": "133712",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "29067",
- "strVenue": "Stade Raymond Kopa",
+ "strResult": "",
+ "idVenue": "23528",
+ "strVenue": "Stade Jean-Bouin",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/ymeh4d1781251513.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/sxjr3q1756020271.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/nx369a1781249194.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fjg87d1754808722.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=ivUaQQuFypQ",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489679",
- "idAPIfootball": "1552949",
- "strTimestamp": "2027-03-20T16:00:00",
- "strEvent": "Paris Saint-Germain vs Strasbourg",
- "strEventAlternate": "Strasbourg @ Paris Saint-Germain",
- "strFilename": "French Ligue 1 2027-03-20 Paris Saint-Germain vs Strasbourg",
+ "idEvent": "2278332",
+ "idAPIfootball": "1387921",
+ "strTimestamp": "2026-03-06T19:45:00",
+ "strEvent": "Paris Saint-Germain vs Monaco",
+ "strEventAlternate": "Monaco @ Paris SG",
+ "strFilename": "French Ligue 1 2026-03-06 Paris Saint-Germain vs Monaco",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris Saint-Germain",
- "strAwayTeam": "Strasbourg",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris SG",
+ "strAwayTeam": "Monaco",
+ "intHomeScore": "1",
"intRound": "25",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-03-06",
+ "dateEventLocal": "2026-03-06",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
"idHomeTeam": "133714",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
- "idAwayTeam": "133882",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "idAwayTeam": "133823",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "16024",
"strVenue": "Parc des Princes",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/3ma0zp1781251514.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/2wdx0d1756020305.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/b43r9k1781249195.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/391wj51754808758.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=davxJxGFkwg",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489680",
- "idAPIfootball": "1552948",
- "strTimestamp": "2027-03-20T16:00:00",
- "strEvent": "Monaco vs Le Havre",
- "strEventAlternate": "Le Havre @ Monaco",
- "strFilename": "French Ligue 1 2027-03-20 Monaco vs Le Havre",
+ "idEvent": "2278325",
+ "idAPIfootball": "1387914",
+ "strTimestamp": "2026-03-07T18:00:00",
+ "strEvent": "Auxerre vs Strasbourg",
+ "strEventAlternate": "Strasbourg @ Auxerre",
+ "strFilename": "French Ligue 1 2026-03-07 Auxerre vs Strasbourg",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Monaco",
- "strAwayTeam": "Le Havre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Auxerre",
+ "strAwayTeam": "Strasbourg",
+ "intHomeScore": "0",
"intRound": "25",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133823",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
- "idAwayTeam": "133862",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "dateEvent": "2026-03-07",
+ "dateEventLocal": "2026-03-07",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134788",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "idAwayTeam": "133882",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16243",
- "strVenue": "Stade Louis II",
- "strCountry": "Monaco",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ifgial1756019455.jpg",
+ "strResult": "",
+ "idVenue": "16189",
+ "strVenue": "Stade de l'Abbé Deschamps",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/cze4lh1756020281.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ft79uk1754726721.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bdb82x1754808733.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=8HxX7d_L0y4",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489681",
- "idAPIfootball": "1552950",
- "strTimestamp": "2027-03-20T16:00:00",
- "strEvent": "Rennes vs Paris FC",
- "strEventAlternate": "Paris FC @ Rennes",
- "strFilename": "French Ligue 1 2027-03-20 Rennes vs Paris FC",
+ "idEvent": "2278330",
+ "idAPIfootball": "1387919",
+ "strTimestamp": "2026-03-07T16:00:00",
+ "strEvent": "Nantes vs Angers",
+ "strEventAlternate": "Angers @ Nantes",
+ "strFilename": "French Ligue 1 2026-03-07 Nantes vs Angers",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Rennes",
- "strAwayTeam": "Paris FC",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nantes",
+ "strAwayTeam": "Angers",
+ "intHomeScore": "0",
"intRound": "25",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-20",
- "dateEventLocal": null,
+ "dateEvent": "2026-03-07",
+ "dateEventLocal": "2026-03-07",
"strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133719",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
- "idAwayTeam": "135465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133861",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
+ "idAwayTeam": "134709",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16104",
- "strVenue": "Roazhon Park",
+ "strResult": "",
+ "idVenue": "16244",
+ "strVenue": "Stade de la Beaujoire - Louis Fonteneau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/rjh35y1756020609.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/i6bzd41756020298.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/cei0v01754809071.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/saer0i1754808751.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=rWxd3K_8SHY",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489682",
- "idAPIfootball": "1552951",
- "strTimestamp": "2027-03-20T16:00:00",
- "strEvent": "Toulouse vs Brest",
- "strEventAlternate": "Brest @ Toulouse",
- "strFilename": "French Ligue 1 2027-03-20 Toulouse vs Brest",
+ "idEvent": "2278333",
+ "idAPIfootball": "1387922",
+ "strTimestamp": "2026-03-07T20:05:00",
+ "strEvent": "Toulouse vs Marseille",
+ "strEventAlternate": "Marseille @ Toulouse",
+ "strFilename": "French Ligue 1 2026-03-07 Toulouse vs Marseille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Toulouse",
- "strAwayTeam": "Brest",
- "intHomeScore": null,
+ "strAwayTeam": "Marseille",
+ "intHomeScore": "0",
"intRound": "25",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-03-07",
+ "dateEventLocal": "2026-03-07",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
"idHomeTeam": "133703",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
- "idAwayTeam": "133704",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "idAwayTeam": "133707",
+ "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "18238",
"strVenue": "Stadium de Toulouse",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/kbj1vl1756019496.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/1lbzns1756020309.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/uwgejk1754726767.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xyhwms1754808762.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=gC9UGV7dAdc",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489683",
- "idAPIfootball": "1552947",
- "strTimestamp": "2027-03-20T16:00:00",
- "strEvent": "Lorient vs Nice",
- "strEventAlternate": "Nice @ Lorient",
- "strFilename": "French Ligue 1 2027-03-20 Lorient vs Nice",
+ "idEvent": "2278326",
+ "idAPIfootball": "1387915",
+ "strTimestamp": "2026-03-08T16:15:00",
+ "strEvent": "Brest vs Le Havre",
+ "strEventAlternate": "Le Havre @ Brest",
+ "strFilename": "French Ligue 1 2026-03-08 Brest vs Le Havre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lorient",
- "strAwayTeam": "Nice",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Brest",
+ "strAwayTeam": "Le Havre",
+ "intHomeScore": "2",
"intRound": "25",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133715",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
- "idAwayTeam": "133712",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "dateEvent": "2026-03-08",
+ "dateEventLocal": "2026-03-08",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133704",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "idAwayTeam": "133862",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16183",
- "strVenue": "Stade du Moustoir",
+ "strResult": "",
+ "idVenue": "17543",
+ "strVenue": "Stade Francis-Le Blé",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/iv74us1756019889.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/kueoyy1756020285.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fsi0w81754727207.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2xwwwj1754808737.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=g1oxcV7KoTQ",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489684",
- "idAPIfootball": "1552952",
- "strTimestamp": "2027-03-20T16:00:00",
- "strEvent": "Troyes vs Auxerre",
- "strEventAlternate": "Auxerre @ Troyes",
- "strFilename": "French Ligue 1 2027-03-20 Troyes vs Auxerre",
+ "idEvent": "2278327",
+ "idAPIfootball": "1387916",
+ "strTimestamp": "2026-03-08T14:00:00",
+ "strEvent": "Lens vs Metz",
+ "strEventAlternate": "Metz @ Lens",
+ "strFilename": "French Ligue 1 2026-03-08 Lens vs Metz",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Troyes",
- "strAwayTeam": "Auxerre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lens",
+ "strAwayTeam": "Metz",
+ "intHomeScore": "3",
"intRound": "25",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134789",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
- "idAwayTeam": "134788",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "dateEvent": "2026-03-08",
+ "dateEventLocal": "2026-03-08",
+ "strTime": "14:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133822",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "idAwayTeam": "133883",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16192",
- "strVenue": "Stade de l'Aube",
+ "strResult": "",
+ "idVenue": "18385",
+ "strVenue": "Stade Bollaert-Delelis",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/m1i7p71781251805.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/dfwej31756020288.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/vh0uno1781249196.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/c7lzpg1754808740.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=gqGc_4qGiX8",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489685",
- "idAPIfootball": "1552946",
- "strTimestamp": "2027-03-20T16:00:00",
- "strEvent": "Lens vs Lille",
- "strEventAlternate": "Lille @ Lens",
- "strFilename": "French Ligue 1 2027-03-20 Lens vs Lille",
+ "idEvent": "2278328",
+ "idAPIfootball": "1387917",
+ "strTimestamp": "2026-03-08T16:15:00",
+ "strEvent": "Lille vs Lorient",
+ "strEventAlternate": "Lorient @ Lille",
+ "strFilename": "French Ligue 1 2026-03-08 Lille vs Lorient",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lens",
- "strAwayTeam": "Lille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lille",
+ "strAwayTeam": "Lorient",
+ "intHomeScore": "1",
"intRound": "25",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133822",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
- "idAwayTeam": "133711",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "dateEvent": "2026-03-08",
+ "dateEventLocal": "2026-03-08",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133711",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "idAwayTeam": "133715",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18385",
- "strVenue": "Stade Bollaert-Delelis",
+ "strResult": "",
+ "idVenue": "17390",
+ "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/qyali41756019590.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/qum69r1756020292.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xrxggh1754726868.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4yx27g1754808744.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=09ipnDpOSyM",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489686",
- "idAPIfootball": "1552953",
- "strTimestamp": "2027-03-21T19:45:00",
- "strEvent": "Marseille vs Lyon",
- "strEventAlternate": "Lyon @ Marseille",
- "strFilename": "French Ligue 1 2027-03-21 Marseille vs Lyon",
+ "idEvent": "2278329",
+ "idAPIfootball": "1387918",
+ "strTimestamp": "2026-03-08T19:45:00",
+ "strEvent": "Lyon vs Paris FC",
+ "strEventAlternate": "Paris FC @ Lyon",
+ "strFilename": "French Ligue 1 2026-03-08 Lyon vs Paris FC",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Marseille",
- "strAwayTeam": "Lyon",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lyon",
+ "strAwayTeam": "Paris FC",
+ "intHomeScore": "1",
"intRound": "25",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-21",
- "dateEventLocal": null,
+ "dateEvent": "2026-03-08",
+ "dateEventLocal": "2026-03-08",
"strTime": "19:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133707",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
- "idAwayTeam": "133713",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133713",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "idAwayTeam": "135465",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "27345",
- "strVenue": "Orange Vélodrome",
+ "strResult": "",
+ "idVenue": "16131",
+ "strVenue": "Groupama Stadium",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/5ftu1x1781251515.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/5zq3dy1756020295.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/o67acp1781249503.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/paqn8e1754808747.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=CwPkRo09mJ0",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489687",
- "idAPIfootball": "1552954",
- "strTimestamp": "2027-04-03T15:00:00",
- "strEvent": "Angers vs Monaco",
- "strEventAlternate": "Monaco @ Angers",
- "strFilename": "French Ligue 1 2027-04-03 Angers vs Monaco",
+ "idEvent": "2278331",
+ "idAPIfootball": "1387920",
+ "strTimestamp": "2026-03-08T16:15:00",
+ "strEvent": "Nice vs Rennes",
+ "strEventAlternate": "Rennes @ Nice",
+ "strFilename": "French Ligue 1 2026-03-08 Nice vs Rennes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Angers",
- "strAwayTeam": "Monaco",
- "intHomeScore": null,
- "intRound": "26",
- "intAwayScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nice",
+ "strAwayTeam": "Rennes",
+ "intHomeScore": "0",
+ "intRound": "25",
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-03",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134709",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
- "idAwayTeam": "133823",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "dateEvent": "2026-03-08",
+ "dateEventLocal": "2026-03-08",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133712",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "idAwayTeam": "133719",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "29067",
- "strVenue": "Stade Raymond Kopa",
+ "strResult": "",
+ "idVenue": "16106",
+ "strVenue": "Allianz Riviera",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/qbxo5e1756019674.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ad0jh61756020302.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zdvhxs1754726959.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/05zr2m1754808755.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=VMYHApnU3to",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489688",
- "idAPIfootball": "1552959",
- "strTimestamp": "2027-04-03T15:00:00",
- "strEvent": "Lille vs Rennes",
- "strEventAlternate": "Rennes @ Lille",
- "strFilename": "French Ligue 1 2027-04-03 Lille vs Rennes",
+ "idEvent": "2278337",
+ "idAPIfootball": "1387926",
+ "strTimestamp": "2026-03-13T19:45:00",
+ "strEvent": "Marseille vs Auxerre",
+ "strEventAlternate": "Auxerre @ Marseille",
+ "strFilename": "French Ligue 1 2026-03-13 Marseille vs Auxerre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lille",
- "strAwayTeam": "Rennes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Marseille",
+ "strAwayTeam": "Auxerre",
+ "intHomeScore": "1",
"intRound": "26",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-03",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133711",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
- "idAwayTeam": "133719",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "dateEvent": "2026-03-13",
+ "dateEventLocal": "2026-03-13",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133707",
+ "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "idAwayTeam": "134788",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17390",
- "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
+ "strResult": "",
+ "idVenue": "27345",
+ "strVenue": "Orange Vélodrome",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/4hfawi1756020001.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/lofjnu1756020323.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/l09vqt1754727310.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/42yd7l1754808776.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=FXSv2uD7qmg",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489689",
- "idAPIfootball": "1552960",
- "strTimestamp": "2027-04-03T15:00:00",
- "strEvent": "Nice vs Lyon",
- "strEventAlternate": "Lyon @ Nice",
- "strFilename": "French Ligue 1 2027-04-03 Nice vs Lyon",
+ "idEvent": "2278334",
+ "idAPIfootball": "1387923",
+ "strTimestamp": "2026-03-14T18:00:00",
+ "strEvent": "Angers vs Nice",
+ "strEventAlternate": "Nice @ Angers",
+ "strFilename": "French Ligue 1 2026-03-14 Angers vs Nice",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Nice",
- "strAwayTeam": "Lyon",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Angers",
+ "strAwayTeam": "Nice",
+ "intHomeScore": "0",
"intRound": "26",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-03",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133712",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
- "idAwayTeam": "133713",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "dateEvent": "2026-03-14",
+ "dateEventLocal": "2026-03-14",
+ "strTime": "18:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134709",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "idAwayTeam": "133712",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16106",
- "strVenue": "Allianz Riviera",
+ "strResult": "",
+ "idVenue": "29067",
+ "strVenue": "Stade Raymond Kopa",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/9jlyxk1756019691.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/o6owiw1756020313.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vm32nw1754726978.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/t6xftc1754808765.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=cQ_66BO9M7Y",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489690",
- "idAPIfootball": "1552962",
- "strTimestamp": "2027-04-03T15:00:00",
- "strEvent": "Strasbourg vs Toulouse",
- "strEventAlternate": "Toulouse @ Strasbourg",
- "strFilename": "French Ligue 1 2027-04-03 Strasbourg vs Toulouse",
+ "idEvent": "2278336",
+ "idAPIfootball": "1387925",
+ "strTimestamp": "2026-03-14T16:00:00",
+ "strEvent": "Lorient vs Lens",
+ "strEventAlternate": "Lens @ Lorient",
+ "strFilename": "French Ligue 1 2026-03-14 Lorient vs Lens",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Strasbourg",
- "strAwayTeam": "Toulouse",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lorient",
+ "strAwayTeam": "Lens",
+ "intHomeScore": "2",
"intRound": "26",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-03",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133882",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
- "idAwayTeam": "133703",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "18120",
- "strVenue": "Stade de la Meinau",
+ "dateEvent": "2026-03-14",
+ "dateEventLocal": "2026-03-14",
+ "strTime": "16:00:00",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133715",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "idAwayTeam": "133822",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "intScore": null,
+ "intScoreVotes": null,
+ "strResult": "",
+ "idVenue": "16183",
+ "strVenue": "Stade du Moustoir",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/8ifbfh1756020563.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/5oxr2u1756020320.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5zib7k1754809025.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ocaul81754808773.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=TOVwl91SPiM",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489691",
- "idAPIfootball": "1552956",
- "strTimestamp": "2027-04-03T15:00:00",
- "strEvent": "Brest vs Lorient",
- "strEventAlternate": "Lorient @ Brest",
- "strFilename": "French Ligue 1 2027-04-03 Brest vs Lorient",
+ "idEvent": "2278339",
+ "idAPIfootball": "1387928",
+ "strTimestamp": "2026-03-14T20:05:00",
+ "strEvent": "Monaco vs Brest",
+ "strEventAlternate": "Brest @ Monaco",
+ "strFilename": "French Ligue 1 2026-03-14 Monaco vs Brest",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Brest",
- "strAwayTeam": "Lorient",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Monaco",
+ "strAwayTeam": "Brest",
+ "intHomeScore": "2",
"intRound": "26",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-03",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133704",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
- "idAwayTeam": "133715",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "dateEvent": "2026-03-14",
+ "dateEventLocal": "2026-03-14",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133823",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "idAwayTeam": "133704",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17543",
- "strVenue": "Stade Francis-Le Blé",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/3zlqyd1756020162.jpg",
+ "strResult": "",
+ "idVenue": "16243",
+ "strVenue": "Stade Louis II",
+ "strCountry": "Monaco",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/nmzmku1756020330.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/puf8wq1754808592.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/rzhpk91754808783.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=tCd19q5ZBZU",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489692",
- "idAPIfootball": "1552955",
- "strTimestamp": "2027-04-03T15:00:00",
- "strEvent": "Auxerre vs Lens",
- "strEventAlternate": "Lens @ Auxerre",
- "strFilename": "French Ligue 1 2027-04-03 Auxerre vs Lens",
+ "idEvent": "2278335",
+ "idAPIfootball": "1387924",
+ "strTimestamp": "2026-03-15T16:15:00",
+ "strEvent": "Le Havre vs Lyon",
+ "strEventAlternate": "Lyon @ Le Havre",
+ "strFilename": "French Ligue 1 2026-03-15 Le Havre vs Lyon",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Auxerre",
- "strAwayTeam": "Lens",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Le Havre",
+ "strAwayTeam": "Lyon",
+ "intHomeScore": "0",
"intRound": "26",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-03",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134788",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
- "idAwayTeam": "133822",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "dateEvent": "2026-03-15",
+ "dateEventLocal": "2026-03-15",
+ "strTime": "16:15:00",
+ "strTimeLocal": "14:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133862",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "idAwayTeam": "133713",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16189",
- "strVenue": "Stade de l'Abbé Deschamps",
+ "strResult": "",
+ "idVenue": "16108",
+ "strVenue": "Stade Océane",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/x5aqv91756019642.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/bm5cjt1756020316.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/q7rg4g1754726925.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ga46ni1754808769.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=HXlvO7mi9Oo",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489693",
- "idAPIfootball": "1552957",
- "strTimestamp": "2027-04-03T15:00:00",
- "strEvent": "Le Havre vs Troyes",
- "strEventAlternate": "Troyes @ Le Havre",
- "strFilename": "French Ligue 1 2027-04-03 Le Havre vs Troyes",
+ "idEvent": "2278338",
+ "idAPIfootball": "1387927",
+ "strTimestamp": "2026-03-15T16:15:00",
+ "strEvent": "Metz vs Toulouse",
+ "strEventAlternate": "Toulouse @ Metz",
+ "strFilename": "French Ligue 1 2026-03-15 Metz vs Toulouse",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Havre",
- "strAwayTeam": "Troyes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Metz",
+ "strAwayTeam": "Toulouse",
+ "intHomeScore": "3",
"intRound": "26",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-03",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133862",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
- "idAwayTeam": "134789",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
+ "dateEvent": "2026-03-15",
+ "dateEventLocal": "2026-03-15",
+ "strTime": "16:15:00",
+ "strTimeLocal": "14:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133883",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
+ "idAwayTeam": "133703",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16108",
- "strVenue": "Stade Océane",
+ "strResult": "",
+ "idVenue": "16242",
+ "strVenue": "Stade Saint-Symphorien",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/7drvq71781251806.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/3dkexf1756020326.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/6xbcea1781249198.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5gpadn1754808780.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=SNmikEmGpFE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489694",
- "idAPIfootball": "1552961",
- "strTimestamp": "2027-04-03T15:00:00",
- "strEvent": "Paris FC vs Paris Saint-Germain",
- "strEventAlternate": "Paris Saint-Germain @ Paris FC",
- "strFilename": "French Ligue 1 2027-04-03 Paris FC vs Paris Saint-Germain",
+ "idEvent": "2278341",
+ "idAPIfootball": "1387930",
+ "strTimestamp": "2026-03-15T19:45:00",
+ "strEvent": "Rennes vs Lille",
+ "strEventAlternate": "Lille @ Rennes",
+ "strFilename": "French Ligue 1 2026-03-15 Rennes vs Lille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris FC",
- "strAwayTeam": "Paris Saint-Germain",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Rennes",
+ "strAwayTeam": "Lille",
+ "intHomeScore": "1",
"intRound": "26",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-03",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "135465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
- "idAwayTeam": "133714",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "dateEvent": "2026-03-15",
+ "dateEventLocal": "2026-03-15",
+ "strTime": "19:45:00",
+ "strTimeLocal": "14:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133719",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "idAwayTeam": "133711",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "23528",
- "strVenue": "Stade Jean-Bouin",
+ "strResult": "",
+ "idVenue": "16104",
+ "strVenue": "Roazhon Park",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/gthokh1781251517.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/stagoy1756020337.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/jencfb1781249198.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/tqonsv1754808791.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=C4jb2V61qoM",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489695",
- "idAPIfootball": "1552958",
- "strTimestamp": "2027-04-03T15:00:00",
- "strEvent": "Le Mans vs Marseille",
- "strEventAlternate": "Marseille @ Le Mans",
- "strFilename": "French Ligue 1 2027-04-03 Le Mans vs Marseille",
+ "idEvent": "2278342",
+ "idAPIfootball": "1387931",
+ "strTimestamp": "2026-03-15T14:00:00",
+ "strEvent": "Strasbourg vs Paris FC",
+ "strEventAlternate": "Paris FC @ Strasbourg",
+ "strFilename": "French Ligue 1 2026-03-15 Strasbourg vs Paris FC",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Mans",
- "strAwayTeam": "Marseille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Strasbourg",
+ "strAwayTeam": "Paris FC",
+ "intHomeScore": "0",
"intRound": "26",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-03",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133848",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
- "idAwayTeam": "133707",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "dateEvent": "2026-03-15",
+ "dateEventLocal": "2026-03-15",
+ "strTime": "14:00:00",
+ "strTimeLocal": "14:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133882",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "idAwayTeam": "135465",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "26610",
- "strVenue": "Stade Marie-Marvingt",
+ "strResult": "",
+ "idVenue": "18120",
+ "strVenue": "Stade de la Meinau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/pnji1f1781251518.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/apr5v81756020340.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/3c38t61781249504.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5xvhp11754808794.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=7ip7ttQKrJM",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489696",
- "idAPIfootball": "1552964",
- "strTimestamp": "2027-04-10T15:00:00",
- "strEvent": "Lille vs Toulouse",
- "strEventAlternate": "Toulouse @ Lille",
- "strFilename": "French Ligue 1 2027-04-10 Lille vs Toulouse",
+ "idEvent": "2278340",
+ "idAPIfootball": "1387929",
+ "strTimestamp": "2026-04-22T17:00:00",
+ "strEvent": "Paris Saint-Germain vs Nantes",
+ "strEventAlternate": "Nantes @ Paris SG",
+ "strFilename": "French Ligue 1 2026-04-22 Paris Saint-Germain vs Nantes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lille",
- "strAwayTeam": "Toulouse",
- "intHomeScore": null,
- "intRound": "27",
- "intAwayScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris SG",
+ "strAwayTeam": "Nantes",
+ "intHomeScore": "3",
+ "intRound": "26",
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-04-10",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133711",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
- "idAwayTeam": "133703",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-22",
+ "dateEventLocal": "2026-04-22",
+ "strTime": "17:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133714",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "idAwayTeam": "133861",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17390",
- "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
+ "strResult": "",
+ "idVenue": "16024",
+ "strVenue": "Parc des Princes",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/u43s551756019556.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/1ld5ru1756020333.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/v4ottq1754726830.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zd4uw21754808787.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=hwSuDuilsLk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489697",
- "idAPIfootball": "1552966",
- "strTimestamp": "2027-04-10T15:00:00",
- "strEvent": "Lyon vs Strasbourg",
- "strEventAlternate": "Strasbourg @ Lyon",
- "strFilename": "French Ligue 1 2027-04-10 Lyon vs Strasbourg",
+ "idEvent": "2278344",
+ "idAPIfootball": "1387933",
+ "strTimestamp": "2026-03-20T19:45:00",
+ "strEvent": "Lens vs Angers",
+ "strEventAlternate": "Angers @ Lens",
+ "strFilename": "French Ligue 1 2026-03-20 Lens vs Angers",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lyon",
- "strAwayTeam": "Strasbourg",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lens",
+ "strAwayTeam": "Angers",
+ "intHomeScore": "5",
"intRound": "27",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-10",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133713",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
- "idAwayTeam": "133882",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "dateEvent": "2026-03-20",
+ "dateEventLocal": "2026-03-20",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133822",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "idAwayTeam": "134709",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16131",
- "strVenue": "Groupama Stadium",
+ "strResult": "",
+ "idVenue": "18385",
+ "strVenue": "Stade Bollaert-Delelis",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/1qptep1756019740.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/uuoj2u1756020365.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/eq64yn1754727029.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jyygnr1754808801.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=0lsJ4gzgN5M",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489698",
- "idAPIfootball": "1552967",
- "strTimestamp": "2027-04-10T15:00:00",
- "strEvent": "Marseille vs Brest",
- "strEventAlternate": "Brest @ Marseille",
- "strFilename": "French Ligue 1 2027-04-10 Marseille vs Brest",
+ "idEvent": "2278343",
+ "idAPIfootball": "1387932",
+ "strTimestamp": "2026-03-21T18:00:00",
+ "strEvent": "Auxerre vs Brest",
+ "strEventAlternate": "Brest @ Auxerre",
+ "strFilename": "French Ligue 1 2026-03-21 Auxerre vs Brest",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Marseille",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Auxerre",
"strAwayTeam": "Brest",
- "intHomeScore": null,
+ "intHomeScore": "3",
"intRound": "27",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-10",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133707",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "dateEvent": "2026-03-21",
+ "dateEventLocal": "2026-03-21",
+ "strTime": "18:00:00",
+ "strTimeLocal": "12:30:00",
+ "strGroup": "",
+ "idHomeTeam": "134788",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
"idAwayTeam": "133704",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "27345",
- "strVenue": "Orange Vélodrome",
+ "strResult": "",
+ "idVenue": "16189",
+ "strVenue": "Stade de l'Abbé Deschamps",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/damok91781251519.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/oanzrd1756020361.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/1b2i291781249505.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yge7l11754808798.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=jgawMvbObqk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489699",
- "idAPIfootball": "1552969",
- "strTimestamp": "2027-04-10T15:00:00",
- "strEvent": "Nice vs Paris FC",
- "strEventAlternate": "Paris FC @ Nice",
- "strFilename": "French Ligue 1 2027-04-10 Nice vs Paris FC",
+ "idEvent": "2278350",
+ "idAPIfootball": "1387937",
+ "strTimestamp": "2026-03-21T20:05:00",
+ "strEvent": "Nice vs Paris Saint-Germain",
+ "strEventAlternate": "Paris SG @ Nice",
+ "strFilename": "French Ligue 1 2026-03-21 Nice vs Paris Saint-Germain",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Nice",
- "strAwayTeam": "Paris FC",
- "intHomeScore": null,
+ "strAwayTeam": "Paris SG",
+ "intHomeScore": "0",
"intRound": "27",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-10",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-03-21",
+ "dateEventLocal": "2026-03-21",
+ "strTime": "20:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
"idHomeTeam": "133712",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
- "idAwayTeam": "135465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "idAwayTeam": "133714",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "16106",
"strVenue": "Allianz Riviera",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/y7yopv1756019625.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/gq2m8s1756020404.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kca6yl1754726906.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7u4c8l1754808823.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=x6eIx7DPHdw",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489700",
- "idAPIfootball": "1552970",
- "strTimestamp": "2027-04-10T15:00:00",
- "strEvent": "Paris Saint-Germain vs Le Havre",
- "strEventAlternate": "Le Havre @ Paris Saint-Germain",
- "strFilename": "French Ligue 1 2027-04-10 Paris Saint-Germain vs Le Havre",
+ "idEvent": "2278351",
+ "idAPIfootball": "1387940",
+ "strTimestamp": "2026-03-21T16:00:00",
+ "strEvent": "Toulouse vs Lorient",
+ "strEventAlternate": "Lorient @ Toulouse",
+ "strFilename": "French Ligue 1 2026-03-21 Toulouse vs Lorient",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris Saint-Germain",
- "strAwayTeam": "Le Havre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Toulouse",
+ "strAwayTeam": "Lorient",
+ "intHomeScore": "1",
"intRound": "27",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-10",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133714",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
- "idAwayTeam": "133862",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "dateEvent": "2026-03-21",
+ "dateEventLocal": "2026-03-21",
+ "strTime": "16:00:00",
+ "strTimeLocal": "12:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133703",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "idAwayTeam": "133715",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16024",
- "strVenue": "Parc des Princes",
+ "strResult": "",
+ "idVenue": "18238",
+ "strVenue": "Stadium de Toulouse",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/wktx2s1781251519.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/trsna31756020407.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/0hvf581781249201.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/j36qfo1754808827.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=B5MBt5HR0VU",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489701",
- "idAPIfootball": "1552968",
- "strTimestamp": "2027-04-10T15:00:00",
- "strEvent": "Monaco vs Rennes",
- "strEventAlternate": "Rennes @ Monaco",
- "strFilename": "French Ligue 1 2027-04-10 Monaco vs Rennes",
+ "idEvent": "2278345",
+ "idAPIfootball": "1387934",
+ "strTimestamp": "2026-03-22T14:00:00",
+ "strEvent": "Lyon vs Monaco",
+ "strEventAlternate": "Monaco @ Lyon",
+ "strFilename": "French Ligue 1 2026-03-22 Lyon vs Monaco",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Monaco",
- "strAwayTeam": "Rennes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lyon",
+ "strAwayTeam": "Monaco",
+ "intHomeScore": "1",
"intRound": "27",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-10",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133823",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
- "idAwayTeam": "133719",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "dateEvent": "2026-03-22",
+ "dateEventLocal": "2026-03-22",
+ "strTime": "14:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133713",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "idAwayTeam": "133823",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16243",
- "strVenue": "Stade Louis II",
- "strCountry": "Monaco",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/g8zbsz1756020138.jpg",
+ "strResult": "",
+ "idVenue": "16131",
+ "strVenue": "Groupama Stadium",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/egs4381756020368.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/np8aur1754808567.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/etykzb1754808805.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=-2KUQy6w6mk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489702",
- "idAPIfootball": "1552965",
- "strTimestamp": "2027-04-10T15:00:00",
- "strEvent": "Lorient vs Lens",
- "strEventAlternate": "Lens @ Lorient",
- "strFilename": "French Ligue 1 2027-04-10 Lorient vs Lens",
+ "idEvent": "2278346",
+ "idAPIfootball": "1387936",
+ "strTimestamp": "2026-03-22T19:45:00",
+ "strEvent": "Nantes vs Strasbourg",
+ "strEventAlternate": "Strasbourg @ Nantes",
+ "strFilename": "French Ligue 1 2026-03-22 Nantes vs Strasbourg",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lorient",
- "strAwayTeam": "Lens",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nantes",
+ "strAwayTeam": "Strasbourg",
+ "intHomeScore": "2",
"intRound": "27",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-10",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133715",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
- "idAwayTeam": "133822",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "dateEvent": "2026-03-22",
+ "dateEventLocal": "2026-03-22",
+ "strTime": "19:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133861",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
+ "idAwayTeam": "133882",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16183",
- "strVenue": "Stade du Moustoir",
+ "strResult": "",
+ "idVenue": "16244",
+ "strVenue": "Stade de la Beaujoire - Louis Fonteneau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/5oxr2u1756020320.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/7k7wco1756020372.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ocaul81754808773.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/j9ygnl1754808809.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=-eqiTIzj4Ps",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489703",
- "idAPIfootball": "1552971",
- "strTimestamp": "2027-04-10T15:00:00",
- "strEvent": "Troyes vs Angers",
- "strEventAlternate": "Angers @ Troyes",
- "strFilename": "French Ligue 1 2027-04-10 Troyes vs Angers",
+ "idEvent": "2278347",
+ "idAPIfootball": "1387938",
+ "strTimestamp": "2026-03-22T16:15:00",
+ "strEvent": "Paris FC vs Le Havre",
+ "strEventAlternate": "Le Havre @ Paris FC",
+ "strFilename": "French Ligue 1 2026-03-22 Paris FC vs Le Havre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Troyes",
- "strAwayTeam": "Angers",
- "intHomeScore": null,
- "intRound": "27",
- "intAwayScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris FC",
+ "strAwayTeam": "Le Havre",
+ "intHomeScore": "3",
+ "intRound": "27",
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-10",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134789",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
- "idAwayTeam": "134709",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "dateEvent": "2026-03-22",
+ "dateEventLocal": "2026-03-22",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "135465",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "idAwayTeam": "133862",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16192",
- "strVenue": "Stade de l'Aube",
+ "strResult": "",
+ "idVenue": "23528",
+ "strVenue": "Stade Jean-Bouin",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/y4jo3e1781251807.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/8sqxb71756020376.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/saqc0n1781249202.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/n1sv5o1754808813.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=noowwZ0vjWY",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489704",
- "idAPIfootball": "1552963",
- "strTimestamp": "2027-04-10T15:00:00",
- "strEvent": "Le Mans vs Auxerre",
- "strEventAlternate": "Auxerre @ Le Mans",
- "strFilename": "French Ligue 1 2027-04-10 Le Mans vs Auxerre",
+ "idEvent": "2278348",
+ "idAPIfootball": "1387939",
+ "strTimestamp": "2026-03-22T16:15:00",
+ "strEvent": "Rennes vs Metz",
+ "strEventAlternate": "Metz @ Rennes",
+ "strFilename": "French Ligue 1 2026-03-22 Rennes vs Metz",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Mans",
- "strAwayTeam": "Auxerre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Rennes",
+ "strAwayTeam": "Metz",
+ "intHomeScore": "0",
"intRound": "27",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-10",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133848",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
- "idAwayTeam": "134788",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "dateEvent": "2026-03-22",
+ "dateEventLocal": "2026-03-22",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133719",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "idAwayTeam": "133883",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "26610",
- "strVenue": "Stade Marie-Marvingt",
+ "strResult": "",
+ "idVenue": "16104",
+ "strVenue": "Roazhon Park",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/q7s94e1781251520.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/j2u5u31756020379.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/kc6ka21781249203.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4qaaui1754808816.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=FNbDpwNjxbs",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489705",
- "idAPIfootball": "1552972",
- "strTimestamp": "2027-04-17T15:00:00",
- "strEvent": "Angers vs Lyon",
- "strEventAlternate": "Lyon @ Angers",
- "strFilename": "French Ligue 1 2027-04-17 Angers vs Lyon",
+ "idEvent": "2278349",
+ "idAPIfootball": "1387935",
+ "strTimestamp": "2026-03-22T16:15:00",
+ "strEvent": "Marseille vs Lille",
+ "strEventAlternate": "Lille @ Marseille",
+ "strFilename": "French Ligue 1 2026-03-22 Marseille vs Lille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Angers",
- "strAwayTeam": "Lyon",
- "intHomeScore": null,
- "intRound": "28",
- "intAwayScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Marseille",
+ "strAwayTeam": "Lille",
+ "intHomeScore": "1",
+ "intRound": "27",
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-17",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134709",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
- "idAwayTeam": "133713",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "dateEvent": "2026-03-22",
+ "dateEventLocal": "2026-03-22",
+ "strTime": "16:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133707",
+ "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "idAwayTeam": "133711",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "29067",
- "strVenue": "Stade Raymond Kopa",
+ "strResult": "",
+ "idVenue": "27345",
+ "strVenue": "Orange Vélodrome",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/0890171756020411.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/uj84941756020400.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3s6ohm1754808830.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/tgrxw21754808820.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=-T6W4SWByAc",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489706",
- "idAPIfootball": "1552978",
- "strTimestamp": "2027-04-17T15:00:00",
- "strEvent": "Paris Saint-Germain vs Lille",
- "strEventAlternate": "Lille @ Paris Saint-Germain",
- "strFilename": "French Ligue 1 2027-04-17 Paris Saint-Germain vs Lille",
+ "idEvent": "2278359",
+ "idAPIfootball": "1387948",
+ "strTimestamp": "2026-04-03T18:45:00",
+ "strEvent": "Paris Saint-Germain vs Toulouse",
+ "strEventAlternate": "Toulouse @ Paris SG",
+ "strFilename": "French Ligue 1 2026-04-03 Paris Saint-Germain vs Toulouse",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris Saint-Germain",
- "strAwayTeam": "Lille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris SG",
+ "strAwayTeam": "Toulouse",
+ "intHomeScore": "3",
"intRound": "28",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-17",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-04-03",
+ "dateEventLocal": "2026-04-03",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
"idHomeTeam": "133714",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
- "idAwayTeam": "133711",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "idAwayTeam": "133703",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "16024",
"strVenue": "Parc des Princes",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/1f9c721781251521.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/mtjq7x1756020435.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/gn7aor1781249204.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kok6941754808856.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=hNw2IPyVOVE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489707",
- "idAPIfootball": "1552977",
- "strTimestamp": "2027-04-17T15:00:00",
- "strEvent": "Monaco vs Strasbourg",
- "strEventAlternate": "Strasbourg @ Monaco",
- "strFilename": "French Ligue 1 2027-04-17 Monaco vs Strasbourg",
+ "idEvent": "2278353",
+ "idAPIfootball": "1387942",
+ "strTimestamp": "2026-04-04T17:00:00",
+ "strEvent": "Brest vs Rennes",
+ "strEventAlternate": "Rennes @ Brest",
+ "strFilename": "French Ligue 1 2026-04-04 Brest vs Rennes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Monaco",
- "strAwayTeam": "Strasbourg",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Brest",
+ "strAwayTeam": "Rennes",
+ "intHomeScore": "3",
"intRound": "28",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-17",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133823",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
- "idAwayTeam": "133882",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "dateEvent": "2026-04-04",
+ "dateEventLocal": "2026-04-04",
+ "strTime": "17:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133704",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "idAwayTeam": "133719",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16243",
- "strVenue": "Stade Louis II",
- "strCountry": "Monaco",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/5yh9zt1756019535.jpg",
+ "strResult": "",
+ "idVenue": "17543",
+ "strVenue": "Stade Francis-Le Blé",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/sfdqlv1756020414.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2a86q61754726789.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2z5qcn1754808834.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=kVvbtoenApU",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489708",
- "idAPIfootball": "1552979",
- "strTimestamp": "2027-04-17T15:00:00",
- "strEvent": "Rennes vs Troyes",
- "strEventAlternate": "Troyes @ Rennes",
- "strFilename": "French Ligue 1 2027-04-17 Rennes vs Troyes",
+ "idEvent": "2278355",
+ "idAPIfootball": "1387944",
+ "strTimestamp": "2026-04-04T19:05:00",
+ "strEvent": "Lille vs Lens",
+ "strEventAlternate": "Lens @ Lille",
+ "strFilename": "French Ligue 1 2026-04-04 Lille vs Lens",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Rennes",
- "strAwayTeam": "Troyes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lille",
+ "strAwayTeam": "Lens",
+ "intHomeScore": "3",
"intRound": "28",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-17",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133719",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
- "idAwayTeam": "134789",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
+ "dateEvent": "2026-04-04",
+ "dateEventLocal": "2026-04-04",
+ "strTime": "19:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133711",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "idAwayTeam": "133822",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16104",
- "strVenue": "Roazhon Park",
+ "strResult": "",
+ "idVenue": "17390",
+ "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/xxco9m1781251808.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/3rcbid1756020421.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/gjluft1781249205.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5r9bim1754808841.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=SUDEGJjh3as",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489709",
- "idAPIfootball": "1552980",
- "strTimestamp": "2027-04-17T15:00:00",
- "strEvent": "Toulouse vs Paris FC",
- "strEventAlternate": "Paris FC @ Toulouse",
- "strFilename": "French Ligue 1 2027-04-17 Toulouse vs Paris FC",
+ "idEvent": "2278360",
+ "idAPIfootball": "1387949",
+ "strTimestamp": "2026-04-04T15:00:00",
+ "strEvent": "Strasbourg vs Nice",
+ "strEventAlternate": "Nice @ Strasbourg",
+ "strFilename": "French Ligue 1 2026-04-04 Strasbourg vs Nice",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Toulouse",
- "strAwayTeam": "Paris FC",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Strasbourg",
+ "strAwayTeam": "Nice",
+ "intHomeScore": "3",
"intRound": "28",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-17",
- "dateEventLocal": null,
+ "dateEvent": "2026-04-04",
+ "dateEventLocal": "2026-04-04",
"strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133703",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
- "idAwayTeam": "135465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133882",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "idAwayTeam": "133712",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18238",
- "strVenue": "Stadium de Toulouse",
+ "strResult": "",
+ "idVenue": "18120",
+ "strVenue": "Stade de la Meinau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/u37m1k1756020246.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/u1f5p11756020439.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jr7le51754808697.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/d9v0i01754808859.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=bcbDf9IGoKc",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489710",
- "idAPIfootball": "1552974",
- "strTimestamp": "2027-04-17T15:00:00",
- "strEvent": "Brest vs Le Mans",
- "strEventAlternate": "Le Mans @ Brest",
- "strFilename": "French Ligue 1 2027-04-17 Brest vs Le Mans",
+ "idEvent": "2278352",
+ "idAPIfootball": "1387941",
+ "strTimestamp": "2026-04-05T13:00:00",
+ "strEvent": "Angers vs Lyon",
+ "strEventAlternate": "Lyon @ Angers",
+ "strFilename": "French Ligue 1 2026-04-05 Angers vs Lyon",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Brest",
- "strAwayTeam": "Le Mans",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Angers",
+ "strAwayTeam": "Lyon",
+ "intHomeScore": "0",
"intRound": "28",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-17",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133704",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
- "idAwayTeam": "133848",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "dateEvent": "2026-04-05",
+ "dateEventLocal": "2026-04-05",
+ "strTime": "13:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134709",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "idAwayTeam": "133713",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17543",
- "strVenue": "Stade Francis-Le Blé",
+ "strResult": "",
+ "idVenue": "29067",
+ "strVenue": "Stade Raymond Kopa",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/9rw91r1781251522.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/0890171756020411.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/b5f66d1781249206.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3s6ohm1754808830.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=o3ACnVcoNiI",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489711",
- "idAPIfootball": "1552973",
- "strTimestamp": "2027-04-17T15:00:00",
- "strEvent": "Auxerre vs Lorient",
- "strEventAlternate": "Lorient @ Auxerre",
- "strFilename": "French Ligue 1 2027-04-17 Auxerre vs Lorient",
+ "idEvent": "2278354",
+ "idAPIfootball": "1387943",
+ "strTimestamp": "2026-04-05T15:15:00",
+ "strEvent": "Le Havre vs Auxerre",
+ "strEventAlternate": "Auxerre @ Le Havre",
+ "strFilename": "French Ligue 1 2026-04-05 Le Havre vs Auxerre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Auxerre",
- "strAwayTeam": "Lorient",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Le Havre",
+ "strAwayTeam": "Auxerre",
+ "intHomeScore": "1",
"intRound": "28",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-17",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134788",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
- "idAwayTeam": "133715",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "dateEvent": "2026-04-05",
+ "dateEventLocal": "2026-04-05",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133862",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "idAwayTeam": "134788",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16189",
- "strVenue": "Stade de l'Abbé Deschamps",
+ "strResult": "",
+ "idVenue": "16108",
+ "strVenue": "Stade Océane",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/svv4qg1756019441.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ohr9341756020418.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/j4q1wo1754726706.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/oa4c2n1754808838.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=1BkWRNWXh5A",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489712",
- "idAPIfootball": "1552975",
- "strTimestamp": "2027-04-17T15:00:00",
- "strEvent": "Le Havre vs Marseille",
- "strEventAlternate": "Marseille @ Le Havre",
- "strFilename": "French Ligue 1 2027-04-17 Le Havre vs Marseille",
+ "idEvent": "2278356",
+ "idAPIfootball": "1387945",
+ "strTimestamp": "2026-04-05T15:15:00",
+ "strEvent": "Lorient vs Paris FC",
+ "strEventAlternate": "Paris FC @ Lorient",
+ "strFilename": "French Ligue 1 2026-04-05 Lorient vs Paris FC",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Havre",
- "strAwayTeam": "Marseille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lorient",
+ "strAwayTeam": "Paris FC",
+ "intHomeScore": "1",
"intRound": "28",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-17",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133862",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
- "idAwayTeam": "133707",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "dateEvent": "2026-04-05",
+ "dateEventLocal": "2026-04-05",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133715",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "idAwayTeam": "135465",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16108",
- "strVenue": "Stade Océane",
+ "strResult": "",
+ "idVenue": "16183",
+ "strVenue": "Stade du Moustoir",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/cbzhe61781251523.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ergo9t1756020425.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/isc4w81781249506.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1jrhkt1754808845.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=uxPoaQeggDg",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489713",
- "idAPIfootball": "1552976",
- "strTimestamp": "2027-04-17T15:00:00",
- "strEvent": "Lens vs Nice",
- "strEventAlternate": "Nice @ Lens",
- "strFilename": "French Ligue 1 2027-04-17 Lens vs Nice",
+ "idEvent": "2278357",
+ "idAPIfootball": "1387946",
+ "strTimestamp": "2026-04-05T15:15:00",
+ "strEvent": "Metz vs Nantes",
+ "strEventAlternate": "Nantes @ Metz",
+ "strFilename": "French Ligue 1 2026-04-05 Metz vs Nantes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lens",
- "strAwayTeam": "Nice",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Metz",
+ "strAwayTeam": "Nantes",
+ "intHomeScore": "0",
"intRound": "28",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-17",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133822",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
- "idAwayTeam": "133712",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "dateEvent": "2026-04-05",
+ "dateEventLocal": "2026-04-05",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133883",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
+ "idAwayTeam": "133861",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18385",
- "strVenue": "Stade Bollaert-Delelis",
+ "strResult": "",
+ "idVenue": "16242",
+ "strVenue": "Stade Saint-Symphorien",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/vvtzq61756019952.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/2dmh5b1756020428.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/lp3dor1754727276.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/sg5jci1754808848.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=FBB9nvIHqG4",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489714",
- "idAPIfootball": "1552982",
- "strTimestamp": "2027-04-24T15:00:00",
- "strEvent": "Lille vs Monaco",
- "strEventAlternate": "Monaco @ Lille",
- "strFilename": "French Ligue 1 2027-04-24 Lille vs Monaco",
+ "idEvent": "2278358",
+ "idAPIfootball": "1387947",
+ "strTimestamp": "2026-04-05T18:45:00",
+ "strEvent": "Monaco vs Marseille",
+ "strEventAlternate": "Marseille @ Monaco",
+ "strFilename": "French Ligue 1 2026-04-05 Monaco vs Marseille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lille",
- "strAwayTeam": "Monaco",
- "intHomeScore": null,
- "intRound": "29",
- "intAwayScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Monaco",
+ "strAwayTeam": "Marseille",
+ "intHomeScore": "2",
+ "intRound": "28",
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-24",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133711",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
- "idAwayTeam": "133823",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "dateEvent": "2026-04-05",
+ "dateEventLocal": "2026-04-05",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133823",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "idAwayTeam": "133707",
+ "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17390",
- "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/dh46he1756019472.jpg",
+ "strResult": "",
+ "idVenue": "16243",
+ "strVenue": "Stade Louis II",
+ "strCountry": "Monaco",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/6eavrb1756020432.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kafok01754726740.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4ejcm61754808852.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=8pFAcuH8eUM",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489715",
- "idAPIfootball": "1552984",
- "strTimestamp": "2027-04-24T15:00:00",
- "strEvent": "Lyon vs Brest",
- "strEventAlternate": "Brest @ Lyon",
- "strFilename": "French Ligue 1 2027-04-24 Lyon vs Brest",
+ "idEvent": "2278365",
+ "idAPIfootball": "1387954",
+ "strTimestamp": "2026-04-10T19:05:00",
+ "strEvent": "Marseille vs Metz",
+ "strEventAlternate": "Metz @ Marseille",
+ "strFilename": "French Ligue 1 2026-04-10 Marseille vs Metz",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lyon",
- "strAwayTeam": "Brest",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Marseille",
+ "strAwayTeam": "Metz",
+ "intHomeScore": "3",
"intRound": "29",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-24",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133713",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
- "idAwayTeam": "133704",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "dateEvent": "2026-04-10",
+ "dateEventLocal": "2026-04-10",
+ "strTime": "19:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133707",
+ "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "idAwayTeam": "133883",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16131",
- "strVenue": "Groupama Stadium",
+ "strResult": "",
+ "idVenue": "27345",
+ "strVenue": "Orange Vélodrome",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/5tds3a1756020051.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/1ih3rt1756020456.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mephlx1754808495.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/i416mn1754808877.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=vaBMrtCb3FQ",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489716",
- "idAPIfootball": "1552985",
- "strTimestamp": "2027-04-24T15:00:00",
- "strEvent": "Marseille vs Auxerre",
- "strEventAlternate": "Auxerre @ Marseille",
- "strFilename": "French Ligue 1 2027-04-24 Marseille vs Auxerre",
+ "idEvent": "2278367",
+ "idAPIfootball": "1387956",
+ "strTimestamp": "2026-04-10T17:00:00",
+ "strEvent": "Paris FC vs Monaco",
+ "strEventAlternate": "Monaco @ Paris FC",
+ "strFilename": "French Ligue 1 2026-04-10 Paris FC vs Monaco",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Marseille",
- "strAwayTeam": "Auxerre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris FC",
+ "strAwayTeam": "Monaco",
+ "intHomeScore": "4",
"intRound": "29",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-24",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133707",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
- "idAwayTeam": "134788",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "dateEvent": "2026-04-10",
+ "dateEventLocal": "2026-04-10",
+ "strTime": "17:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "135465",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "idAwayTeam": "133823",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "27345",
- "strVenue": "Orange Vélodrome",
+ "strResult": "",
+ "idVenue": "23528",
+ "strVenue": "Stade Jean-Bouin",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/y1vpt41781251523.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/82ws701756020463.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/o01cg31781249507.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vl1h3i1754808884.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=sqBslYu47EU",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489717",
- "idAPIfootball": "1552986",
- "strTimestamp": "2027-04-24T15:00:00",
- "strEvent": "Nice vs Angers",
- "strEventAlternate": "Angers @ Nice",
- "strFilename": "French Ligue 1 2027-04-24 Nice vs Angers",
+ "idEvent": "2278361",
+ "idAPIfootball": "1387950",
+ "strTimestamp": "2026-04-11T17:00:00",
+ "strEvent": "Auxerre vs Nantes",
+ "strEventAlternate": "Nantes @ Auxerre",
+ "strFilename": "French Ligue 1 2026-04-11 Auxerre vs Nantes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Nice",
- "strAwayTeam": "Angers",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Auxerre",
+ "strAwayTeam": "Nantes",
+ "intHomeScore": "0",
"intRound": "29",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-24",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133712",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
- "idAwayTeam": "134709",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "dateEvent": "2026-04-11",
+ "dateEventLocal": "2026-04-11",
+ "strTime": "17:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134788",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "idAwayTeam": "133861",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16106",
- "strVenue": "Allianz Riviera",
+ "strResult": "",
+ "idVenue": "16189",
+ "strVenue": "Stade de l'Abbé Deschamps",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/mgxl631756019934.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/tvj1qs1756020442.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/d8n7qx1754727256.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/j16lju1754808863.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=N9YCijvnco8",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489718",
- "idAPIfootball": "1552988",
- "strTimestamp": "2027-04-24T15:00:00",
- "strEvent": "Strasbourg vs Rennes",
- "strEventAlternate": "Rennes @ Strasbourg",
- "strFilename": "French Ligue 1 2027-04-24 Strasbourg vs Rennes",
+ "idEvent": "2278368",
+ "idAPIfootball": "1387957",
+ "strTimestamp": "2026-04-11T19:05:00",
+ "strEvent": "Rennes vs Angers",
+ "strEventAlternate": "Angers @ Rennes",
+ "strFilename": "French Ligue 1 2026-04-11 Rennes vs Angers",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Strasbourg",
- "strAwayTeam": "Rennes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Rennes",
+ "strAwayTeam": "Angers",
+ "intHomeScore": "2",
"intRound": "29",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-24",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133882",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
- "idAwayTeam": "133719",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "dateEvent": "2026-04-11",
+ "dateEventLocal": "2026-04-11",
+ "strTime": "19:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133719",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "idAwayTeam": "134709",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18120",
- "strVenue": "Stade de la Meinau",
+ "strResult": "",
+ "idVenue": "16104",
+ "strVenue": "Roazhon Park",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/cmiaqa1756020501.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/mxpkye1756020466.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8k7dwj1754808942.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/51grmw1754808888.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=xF-hGLPuaxg",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489719",
- "idAPIfootball": "1552983",
- "strTimestamp": "2027-04-24T15:00:00",
- "strEvent": "Lorient vs Paris Saint-Germain",
- "strEventAlternate": "Paris Saint-Germain @ Lorient",
- "strFilename": "French Ligue 1 2027-04-24 Lorient vs Paris Saint-Germain",
+ "idEvent": "2278364",
+ "idAPIfootball": "1387953",
+ "strTimestamp": "2026-04-12T18:45:00",
+ "strEvent": "Lyon vs Lorient",
+ "strEventAlternate": "Lorient @ Lyon",
+ "strFilename": "French Ligue 1 2026-04-12 Lyon vs Lorient",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lorient",
- "strAwayTeam": "Paris Saint-Germain",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lyon",
+ "strAwayTeam": "Lorient",
+ "intHomeScore": "2",
"intRound": "29",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-24",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133715",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
- "idAwayTeam": "133714",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "dateEvent": "2026-04-12",
+ "dateEventLocal": "2026-04-12",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133713",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "idAwayTeam": "133715",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16183",
- "strVenue": "Stade du Moustoir",
+ "strResult": "",
+ "idVenue": "16131",
+ "strVenue": "Groupama Stadium",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/o44dkx1781251524.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/oz64su1756020453.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/t0jz191781249208.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9hnfcj1754808874.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=G0E8mphTYqw",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489720",
- "idAPIfootball": "1552989",
- "strTimestamp": "2027-04-24T15:00:00",
- "strEvent": "Troyes vs Toulouse",
- "strEventAlternate": "Toulouse @ Troyes",
- "strFilename": "French Ligue 1 2027-04-24 Troyes vs Toulouse",
+ "idEvent": "2278366",
+ "idAPIfootball": "1387955",
+ "strTimestamp": "2026-04-12T15:15:00",
+ "strEvent": "Nice vs Le Havre",
+ "strEventAlternate": "Le Havre @ Nice",
+ "strFilename": "French Ligue 1 2026-04-12 Nice vs Le Havre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Troyes",
- "strAwayTeam": "Toulouse",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nice",
+ "strAwayTeam": "Le Havre",
+ "intHomeScore": "1",
"intRound": "29",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-24",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134789",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
- "idAwayTeam": "133703",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "dateEvent": "2026-04-12",
+ "dateEventLocal": "2026-04-12",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133712",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "idAwayTeam": "133862",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16192",
- "strVenue": "Stade de l'Aube",
+ "strResult": "",
+ "idVenue": "16106",
+ "strVenue": "Allianz Riviera",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/vdww8w1781251809.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/jt0spn1756020460.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/0ec47x1781249209.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9yo54e1754808881.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=1C67eEljhI8",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489721",
- "idAPIfootball": "1552987",
- "strTimestamp": "2027-04-24T15:00:00",
- "strEvent": "Paris FC vs Lens",
- "strEventAlternate": "Lens @ Paris FC",
- "strFilename": "French Ligue 1 2027-04-24 Paris FC vs Lens",
+ "idEvent": "2278369",
+ "idAPIfootball": "1387958",
+ "strTimestamp": "2026-04-12T15:15:00",
+ "strEvent": "Toulouse vs Lille",
+ "strEventAlternate": "Lille @ Toulouse",
+ "strFilename": "French Ligue 1 2026-04-12 Toulouse vs Lille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris FC",
- "strAwayTeam": "Lens",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Toulouse",
+ "strAwayTeam": "Lille",
+ "intHomeScore": "0",
"intRound": "29",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-24",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "135465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
- "idAwayTeam": "133822",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "dateEvent": "2026-04-12",
+ "dateEventLocal": "2026-04-12",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133703",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "idAwayTeam": "133711",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "23528",
- "strVenue": "Stade Jean-Bouin",
+ "strResult": "",
+ "idVenue": "18238",
+ "strVenue": "Stadium de Toulouse",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/q6llnc1756020211.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/97d5vv1756020470.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/r6yq6j1754808643.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/03fvsg1754808892.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=PoAto1Hae2k",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489722",
- "idAPIfootball": "1552981",
- "strTimestamp": "2027-04-24T15:00:00",
- "strEvent": "Le Mans vs Le Havre",
- "strEventAlternate": "Le Havre @ Le Mans",
- "strFilename": "French Ligue 1 2027-04-24 Le Mans vs Le Havre",
+ "idEvent": "2278362",
+ "idAPIfootball": "1387951",
+ "strTimestamp": "2026-05-13T17:00:00",
+ "strEvent": "Brest vs Strasbourg",
+ "strEventAlternate": "Strasbourg @ Brest",
+ "strFilename": "French Ligue 1 2026-05-13 Brest vs Strasbourg",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Mans",
- "strAwayTeam": "Le Havre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Brest",
+ "strAwayTeam": "Strasbourg",
+ "intHomeScore": "1",
"intRound": "29",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-04-24",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133848",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
- "idAwayTeam": "133862",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-13",
+ "dateEventLocal": "2026-05-13",
+ "strTime": "17:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133704",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "idAwayTeam": "133882",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "26610",
- "strVenue": "Stade Marie-Marvingt",
+ "strResult": "",
+ "idVenue": "17543",
+ "strVenue": "Stade Francis-Le Blé",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/wzplyf1781251525.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/8y7ghn1756020446.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/1psbm71781249210.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/iy2z271754808866.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=7cHzwF9I46Y",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489723",
- "idAPIfootball": "1552994",
- "strTimestamp": "2027-05-01T15:00:00",
- "strEvent": "Paris Saint-Germain vs Angers",
- "strEventAlternate": "Angers @ Paris Saint-Germain",
- "strFilename": "French Ligue 1 2027-05-01 Paris Saint-Germain vs Angers",
+ "idEvent": "2278363",
+ "idAPIfootball": "1387952",
+ "strTimestamp": "2026-05-13T19:00:00",
+ "strEvent": "Lens vs Paris Saint-Germain",
+ "strEventAlternate": "Paris SG @ Lens",
+ "strFilename": "French Ligue 1 2026-05-13 Lens vs Paris Saint-Germain",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris Saint-Germain",
- "strAwayTeam": "Angers",
- "intHomeScore": null,
- "intRound": "30",
- "intAwayScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lens",
+ "strAwayTeam": "Paris SG",
+ "intHomeScore": "0",
+ "intRound": "29",
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-01",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133714",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
- "idAwayTeam": "134709",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-13",
+ "dateEventLocal": "2026-05-13",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133822",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "idAwayTeam": "133714",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16024",
- "strVenue": "Parc des Princes",
+ "strResult": "",
+ "idVenue": "18385",
+ "strVenue": "Stade Bollaert-Delelis",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/fxm5b71781251526.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/u118yr1756020449.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/xgq4le1781249211.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/znmr041754808870.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=k3AkOR49kVo",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489724",
- "idAPIfootball": "1552993",
- "strTimestamp": "2027-05-01T15:00:00",
- "strEvent": "Monaco vs Lorient",
- "strEventAlternate": "Lorient @ Monaco",
- "strFilename": "French Ligue 1 2027-05-01 Monaco vs Lorient",
+ "idEvent": "2278371",
+ "idAPIfootball": "1387960",
+ "strTimestamp": "2026-04-17T18:45:00",
+ "strEvent": "Lens vs Toulouse",
+ "strEventAlternate": "Toulouse @ Lens",
+ "strFilename": "French Ligue 1 2026-04-17 Lens vs Toulouse",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Monaco",
- "strAwayTeam": "Lorient",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lens",
+ "strAwayTeam": "Toulouse",
+ "intHomeScore": "3",
"intRound": "30",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-01",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133823",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
- "idAwayTeam": "133715",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-17",
+ "dateEventLocal": "2026-04-17",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133822",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "idAwayTeam": "133703",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16243",
- "strVenue": "Stade Louis II",
- "strCountry": "Monaco",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/yowtb11756020054.jpg",
+ "strResult": "",
+ "idVenue": "18385",
+ "strVenue": "Stade Bollaert-Delelis",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ojhskg1756020477.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7zrjen1754808498.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3z5bpy1754808899.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=S2hWBQQVKRE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489725",
- "idAPIfootball": "1552995",
- "strTimestamp": "2027-05-01T15:00:00",
- "strEvent": "Rennes vs Nice",
- "strEventAlternate": "Nice @ Rennes",
- "strFilename": "French Ligue 1 2027-05-01 Rennes vs Nice",
+ "idEvent": "2278370",
+ "idAPIfootball": "1387959",
+ "strTimestamp": "2026-04-18T17:00:00",
+ "strEvent": "Angers vs Le Havre",
+ "strEventAlternate": "Le Havre @ Angers",
+ "strFilename": "French Ligue 1 2026-04-18 Angers vs Le Havre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Rennes",
- "strAwayTeam": "Nice",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Angers",
+ "strAwayTeam": "Le Havre",
+ "intHomeScore": "1",
"intRound": "30",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-01",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133719",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
- "idAwayTeam": "133712",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-18",
+ "dateEventLocal": "2026-04-18",
+ "strTime": "17:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134709",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "idAwayTeam": "133862",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16104",
- "strVenue": "Roazhon Park",
+ "strResult": "",
+ "idVenue": "29067",
+ "strVenue": "Stade Raymond Kopa",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/iins7a1756019751.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/wlpsa91756020473.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/h0rd8e1754808466.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1kweke1754808895.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=l4Uyjo75tyU",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489726",
- "idAPIfootball": "1552996",
- "strTimestamp": "2027-05-01T15:00:00",
- "strEvent": "Strasbourg vs Lille",
- "strEventAlternate": "Lille @ Strasbourg",
- "strFilename": "French Ligue 1 2027-05-01 Strasbourg vs Lille",
+ "idEvent": "2278372",
+ "idAPIfootball": "1387961",
+ "strTimestamp": "2026-04-18T19:05:00",
+ "strEvent": "Lille vs Nice",
+ "strEventAlternate": "Nice @ Lille",
+ "strFilename": "French Ligue 1 2026-04-18 Lille vs Nice",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Strasbourg",
- "strAwayTeam": "Lille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lille",
+ "strAwayTeam": "Nice",
+ "intHomeScore": "0",
"intRound": "30",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-01",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133882",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
- "idAwayTeam": "133711",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-18",
+ "dateEventLocal": "2026-04-18",
+ "strTime": "19:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133711",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "idAwayTeam": "133712",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18120",
- "strVenue": "Stade de la Meinau",
+ "strResult": "",
+ "idVenue": "17390",
+ "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/g7n5z51756019847.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/qu1yzz1756020480.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/21lgep1754727161.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0u3yvp1754808902.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=CfvgIhIYoR0",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489727",
- "idAPIfootball": "1552997",
- "strTimestamp": "2027-05-01T15:00:00",
- "strEvent": "Toulouse vs Marseille",
- "strEventAlternate": "Marseille @ Toulouse",
- "strFilename": "French Ligue 1 2027-05-01 Toulouse vs Marseille",
+ "idEvent": "2278373",
+ "idAPIfootball": "1387962",
+ "strTimestamp": "2026-04-18T15:00:00",
+ "strEvent": "Lorient vs Marseille",
+ "strEventAlternate": "Marseille @ Lorient",
+ "strFilename": "French Ligue 1 2026-04-18 Lorient vs Marseille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Toulouse",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lorient",
"strAwayTeam": "Marseille",
- "intHomeScore": null,
+ "intHomeScore": "2",
"intRound": "30",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-01",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-04-18",
+ "dateEventLocal": "2026-04-18",
"strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133703",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133715",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"idAwayTeam": "133707",
"strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18238",
- "strVenue": "Stadium de Toulouse",
+ "strResult": "",
+ "idVenue": "16183",
+ "strVenue": "Stade du Moustoir",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/sagx6u1781251527.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/dsrmgz1756020484.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/jrq8de1781249508.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/r4o95t1754808906.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=2YIEEWmDAwI",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489728",
- "idAPIfootball": "1552990",
- "strTimestamp": "2027-05-01T15:00:00",
- "strEvent": "Auxerre vs Lyon",
- "strEventAlternate": "Lyon @ Auxerre",
- "strFilename": "French Ligue 1 2027-05-01 Auxerre vs Lyon",
+ "idEvent": "2278374",
+ "idAPIfootball": "1387963",
+ "strTimestamp": "2026-04-19T15:15:00",
+ "strEvent": "Metz vs Paris FC",
+ "strEventAlternate": "Paris FC @ Metz",
+ "strFilename": "French Ligue 1 2026-04-19 Metz vs Paris FC",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Auxerre",
- "strAwayTeam": "Lyon",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Metz",
+ "strAwayTeam": "Paris FC",
+ "intHomeScore": "1",
"intRound": "30",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-01",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134788",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
- "idAwayTeam": "133713",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-19",
+ "dateEventLocal": "2026-04-19",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133883",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
+ "idAwayTeam": "135465",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16189",
- "strVenue": "Stade de l'Abbé Deschamps",
+ "strResult": "",
+ "idVenue": "16242",
+ "strVenue": "Stade Saint-Symphorien",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/u6bwwr1756019850.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/z54nkt1756020487.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/izplkc1754727165.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/o8odnt1754808910.jpg",
+ "strBanner": "",
+ "strMap": null,
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=J3Fd7dTMvz4",
+ "strStatus": "FT",
+ "strPostponed": "no",
+ "strLocked": "unlocked"
+ },
+ {
+ "idEvent": "2278375",
+ "idAPIfootball": "1387964",
+ "strTimestamp": "2026-04-19T13:00:00",
+ "strEvent": "Monaco vs Auxerre",
+ "strEventAlternate": "Auxerre @ Monaco",
+ "strFilename": "French Ligue 1 2026-04-19 Monaco vs Auxerre",
+ "strSport": "Soccer",
+ "idLeague": "4334",
+ "strLeague": "French Ligue 1",
+ "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Monaco",
+ "strAwayTeam": "Auxerre",
+ "intHomeScore": "2",
+ "intRound": "30",
+ "intAwayScore": "2",
+ "intSpectators": null,
+ "strOfficial": "",
+ "strWeather": "",
+ "dateEvent": "2026-04-19",
+ "dateEventLocal": "2026-04-19",
+ "strTime": "13:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133823",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "idAwayTeam": "134788",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "intScore": null,
+ "intScoreVotes": null,
+ "strResult": "",
+ "idVenue": "16243",
+ "strVenue": "Stade Louis II",
+ "strCountry": "Monaco",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/0qtl0a1756020491.jpg",
+ "strSquare": "",
+ "strFanart": null,
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/t3rxln1754808913.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=sfq-VKE4_xY",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489729",
- "idAPIfootball": "1552998",
- "strTimestamp": "2027-05-01T15:00:00",
- "strEvent": "Troyes vs Brest",
- "strEventAlternate": "Brest @ Troyes",
- "strFilename": "French Ligue 1 2027-05-01 Troyes vs Brest",
+ "idEvent": "2278376",
+ "idAPIfootball": "1387965",
+ "strTimestamp": "2026-04-19T15:15:00",
+ "strEvent": "Nantes vs Brest",
+ "strEventAlternate": "Brest @ Nantes",
+ "strFilename": "French Ligue 1 2026-04-19 Nantes vs Brest",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Troyes",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nantes",
"strAwayTeam": "Brest",
- "intHomeScore": null,
+ "intHomeScore": "1",
"intRound": "30",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-01",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134789",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-19",
+ "dateEventLocal": "2026-04-19",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133861",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"idAwayTeam": "133704",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16192",
- "strVenue": "Stade de l'Aube",
+ "strResult": "",
+ "idVenue": "16244",
+ "strVenue": "Stade de la Beaujoire - Louis Fonteneau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/nu15521781251810.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/2uxew21756020494.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/a9lrhd1781249213.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8b7keg1754808917.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=logA2XD7Kb8",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489730",
- "idAPIfootball": "1552991",
- "strTimestamp": "2027-05-01T15:00:00",
- "strEvent": "Le Havre vs Paris FC",
- "strEventAlternate": "Paris FC @ Le Havre",
- "strFilename": "French Ligue 1 2027-05-01 Le Havre vs Paris FC",
+ "idEvent": "2278377",
+ "idAPIfootball": "1387966",
+ "strTimestamp": "2026-04-19T18:45:00",
+ "strEvent": "Paris Saint-Germain vs Lyon",
+ "strEventAlternate": "Lyon @ Paris SG",
+ "strFilename": "French Ligue 1 2026-04-19 Paris Saint-Germain vs Lyon",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Havre",
- "strAwayTeam": "Paris FC",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris SG",
+ "strAwayTeam": "Lyon",
+ "intHomeScore": "1",
"intRound": "30",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-01",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133862",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
- "idAwayTeam": "135465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-19",
+ "dateEventLocal": "2026-04-19",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133714",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "idAwayTeam": "133713",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16108",
- "strVenue": "Stade Océane",
+ "strResult": "",
+ "idVenue": "16024",
+ "strVenue": "Parc des Princes",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/hbivdh1756019920.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/oyjaip1756020498.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ckt3is1754727241.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/csr37v1754808938.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=Vizwg2s-VbQ",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489731",
- "idAPIfootball": "1552992",
- "strTimestamp": "2027-05-01T15:00:00",
- "strEvent": "Lens vs Le Mans",
- "strEventAlternate": "Le Mans @ Lens",
- "strFilename": "French Ligue 1 2027-05-01 Lens vs Le Mans",
+ "idEvent": "2278378",
+ "idAPIfootball": "1387967",
+ "strTimestamp": "2026-04-19T15:15:00",
+ "strEvent": "Strasbourg vs Rennes",
+ "strEventAlternate": "Rennes @ Strasbourg",
+ "strFilename": "French Ligue 1 2026-04-19 Strasbourg vs Rennes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lens",
- "strAwayTeam": "Le Mans",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Strasbourg",
+ "strAwayTeam": "Rennes",
+ "intHomeScore": "0",
"intRound": "30",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-01",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133822",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
- "idAwayTeam": "133848",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-19",
+ "dateEventLocal": "2026-04-19",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133882",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "idAwayTeam": "133719",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18385",
- "strVenue": "Stade Bollaert-Delelis",
+ "strResult": "",
+ "idVenue": "18120",
+ "strVenue": "Stade de la Meinau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/36je7t1781251527.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/cmiaqa1756020501.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/rjvqg31781249214.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8k7dwj1754808942.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=YeYA5OMFv_0",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489732",
- "idAPIfootball": "1552999",
- "strTimestamp": "2027-05-08T15:00:00",
- "strEvent": "Angers vs Toulouse",
- "strEventAlternate": "Toulouse @ Angers",
- "strFilename": "French Ligue 1 2027-05-08 Angers vs Toulouse",
+ "idEvent": "2278380",
+ "idAPIfootball": "1387969",
+ "strTimestamp": "2026-04-24T18:45:00",
+ "strEvent": "Brest vs Lens",
+ "strEventAlternate": "Lens @ Brest",
+ "strFilename": "French Ligue 1 2026-04-24 Brest vs Lens",
+ "strSport": "Soccer",
+ "idLeague": "4334",
+ "strLeague": "French Ligue 1",
+ "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Brest",
+ "strAwayTeam": "Lens",
+ "intHomeScore": "3",
+ "intRound": "31",
+ "intAwayScore": "3",
+ "intSpectators": null,
+ "strOfficial": "",
+ "strWeather": "",
+ "dateEvent": "2026-04-24",
+ "dateEventLocal": "2026-04-24",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133704",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "idAwayTeam": "133822",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "intScore": null,
+ "intScoreVotes": null,
+ "strResult": "",
+ "idVenue": "17543",
+ "strVenue": "Stade Francis-Le Blé",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/8aarw51756020508.jpg",
+ "strSquare": "",
+ "strFanart": null,
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6nnojp1754808949.jpg",
+ "strBanner": "",
+ "strMap": null,
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=XKOq_791r1o",
+ "strStatus": "FT",
+ "strPostponed": "no",
+ "strLocked": "unlocked"
+ },
+ {
+ "idEvent": "2278379",
+ "idAPIfootball": "1387968",
+ "strTimestamp": "2026-04-25T17:00:00",
+ "strEvent": "Angers vs Paris Saint-Germain",
+ "strEventAlternate": "Paris SG @ Angers",
+ "strFilename": "French Ligue 1 2026-04-25 Angers vs Paris Saint-Germain",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Angers",
- "strAwayTeam": "Toulouse",
- "intHomeScore": null,
+ "strAwayTeam": "Paris SG",
+ "intHomeScore": "0",
"intRound": "31",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-08",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "strWeather": "",
+ "dateEvent": "2026-04-25",
+ "dateEventLocal": "2026-04-25",
+ "strTime": "17:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
"idHomeTeam": "134709",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
- "idAwayTeam": "133703",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "idAwayTeam": "133714",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "29067",
"strVenue": "Stade Raymond Kopa",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/1nkxiz1756020155.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/v53fre1756020504.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/er22td1754808585.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/v23xsi1754808945.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=UOPXIgK7CZk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489733",
- "idAPIfootball": "1553004",
- "strTimestamp": "2027-05-08T15:00:00",
- "strEvent": "Nice vs Marseille",
- "strEventAlternate": "Marseille @ Nice",
- "strFilename": "French Ligue 1 2027-05-08 Nice vs Marseille",
+ "idEvent": "2278383",
+ "idAPIfootball": "1387972",
+ "strTimestamp": "2026-04-25T13:00:00",
+ "strEvent": "Lyon vs Auxerre",
+ "strEventAlternate": "Auxerre @ Lyon",
+ "strFilename": "French Ligue 1 2026-04-25 Lyon vs Auxerre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Nice",
- "strAwayTeam": "Marseille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lyon",
+ "strAwayTeam": "Auxerre",
+ "intHomeScore": "3",
"intRound": "31",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-08",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133712",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
- "idAwayTeam": "133707",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-25",
+ "dateEventLocal": "2026-04-25",
+ "strTime": "13:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133713",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "idAwayTeam": "134788",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16106",
- "strVenue": "Allianz Riviera",
+ "strResult": "",
+ "idVenue": "16131",
+ "strVenue": "Groupama Stadium",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/q2xnm51781251528.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/3mvnhl1756020518.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/o122zx1781249509.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vicsfq1754808960.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=cNz4DfTVN3Y",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489734",
- "idAPIfootball": "1553006",
- "strTimestamp": "2027-05-08T15:00:00",
- "strEvent": "Rennes vs Le Havre",
- "strEventAlternate": "Le Havre @ Rennes",
- "strFilename": "French Ligue 1 2027-05-08 Rennes vs Le Havre",
+ "idEvent": "2278387",
+ "idAPIfootball": "1387976",
+ "strTimestamp": "2026-04-25T19:05:00",
+ "strEvent": "Toulouse vs Monaco",
+ "strEventAlternate": "Monaco @ Toulouse",
+ "strFilename": "French Ligue 1 2026-04-25 Toulouse vs Monaco",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Rennes",
- "strAwayTeam": "Le Havre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Toulouse",
+ "strAwayTeam": "Monaco",
+ "intHomeScore": "2",
"intRound": "31",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-08",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133719",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
- "idAwayTeam": "133862",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-25",
+ "dateEventLocal": "2026-04-25",
+ "strTime": "19:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133703",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "idAwayTeam": "133823",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16104",
- "strVenue": "Roazhon Park",
+ "strResult": "",
+ "idVenue": "18238",
+ "strVenue": "Stadium de Toulouse",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/v9ba1y1756020064.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/tn77y71756020532.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5yhswd1754808509.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yqufb41754808974.jpg",
+ "strBanner": "",
+ "strMap": null,
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=ypgE0KTRP5k",
+ "strStatus": "FT",
+ "strPostponed": "no",
+ "strLocked": "unlocked"
+ },
+ {
+ "idEvent": "2278381",
+ "idAPIfootball": "1387970",
+ "strTimestamp": "2026-04-26T15:15:00",
+ "strEvent": "Le Havre vs Metz",
+ "strEventAlternate": "Metz @ Le Havre",
+ "strFilename": "French Ligue 1 2026-04-26 Le Havre vs Metz",
+ "strSport": "Soccer",
+ "idLeague": "4334",
+ "strLeague": "French Ligue 1",
+ "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Le Havre",
+ "strAwayTeam": "Metz",
+ "intHomeScore": "4",
+ "intRound": "31",
+ "intAwayScore": "4",
+ "intSpectators": null,
+ "strOfficial": "",
+ "strWeather": "",
+ "dateEvent": "2026-04-26",
+ "dateEventLocal": "2026-04-26",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133862",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "idAwayTeam": "133883",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
+ "intScore": null,
+ "intScoreVotes": null,
+ "strResult": "",
+ "idVenue": "16108",
+ "strVenue": "Stade Océane",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/urtxbs1756020511.jpg",
+ "strSquare": "",
+ "strFanart": null,
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6211pw1754808953.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=TY7bGdvW-GE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489735",
- "idAPIfootball": "1553003",
- "strTimestamp": "2027-05-08T15:00:00",
+ "idEvent": "2278382",
+ "idAPIfootball": "1387971",
+ "strTimestamp": "2026-04-26T13:00:00",
"strEvent": "Lorient vs Strasbourg",
"strEventAlternate": "Strasbourg @ Lorient",
- "strFilename": "French Ligue 1 2027-05-08 Lorient vs Strasbourg",
+ "strFilename": "French Ligue 1 2026-04-26 Lorient vs Strasbourg",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Lorient",
"strAwayTeam": "Strasbourg",
- "intHomeScore": null,
+ "intHomeScore": "2",
"intRound": "31",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-08",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "strWeather": "",
+ "dateEvent": "2026-04-26",
+ "dateEventLocal": "2026-04-26",
+ "strTime": "13:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
"idHomeTeam": "133715",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"idAwayTeam": "133882",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "16183",
"strVenue": "Stade du Moustoir",
"strCountry": "France",
- "strCity": null,
+ "strCity": "",
"strPoster": "https://r2.thesportsdb.com/images/media/event/poster/62y10z1756020515.jpg",
"strSquare": "",
"strFanart": null,
"strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/j0gczi1754808956.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=-sDF9GeiD5k",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489736",
- "idAPIfootball": "1553000",
- "strTimestamp": "2027-05-08T15:00:00",
- "strEvent": "Brest vs Auxerre",
- "strEventAlternate": "Auxerre @ Brest",
- "strFilename": "French Ligue 1 2027-05-08 Brest vs Auxerre",
+ "idEvent": "2278384",
+ "idAPIfootball": "1387973",
+ "strTimestamp": "2026-04-26T18:45:00",
+ "strEvent": "Marseille vs Nice",
+ "strEventAlternate": "Nice @ Marseille",
+ "strFilename": "French Ligue 1 2026-04-26 Marseille vs Nice",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Brest",
- "strAwayTeam": "Auxerre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Marseille",
+ "strAwayTeam": "Nice",
+ "intHomeScore": "1",
"intRound": "31",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-08",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133704",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
- "idAwayTeam": "134788",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-26",
+ "dateEventLocal": "2026-04-26",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133707",
+ "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "idAwayTeam": "133712",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17543",
- "strVenue": "Stade Francis-Le Blé",
+ "strResult": "",
+ "idVenue": "27345",
+ "strVenue": "Orange Vélodrome",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/epxsuk1756019995.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/z0o1nx1756020522.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/o1h5rb1754727303.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/e11a4h1754808963.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=cZSHYRpNFhw",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489737",
- "idAPIfootball": "1553005",
- "strTimestamp": "2027-05-08T15:00:00",
+ "idEvent": "2278385",
+ "idAPIfootball": "1387974",
+ "strTimestamp": "2026-04-26T15:15:00",
"strEvent": "Paris FC vs Lille",
"strEventAlternate": "Lille @ Paris FC",
- "strFilename": "French Ligue 1 2027-05-08 Paris FC vs Lille",
+ "strFilename": "French Ligue 1 2026-04-26 Paris FC vs Lille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Paris FC",
"strAwayTeam": "Lille",
- "intHomeScore": null,
+ "intHomeScore": "0",
"intRound": "31",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-08",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "strWeather": "",
+ "dateEvent": "2026-04-26",
+ "dateEventLocal": "2026-04-26",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
"idHomeTeam": "135465",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
"idAwayTeam": "133711",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "23528",
"strVenue": "Stade Jean-Bouin",
"strCountry": "France",
- "strCity": null,
+ "strCity": "",
"strPoster": "https://r2.thesportsdb.com/images/media/event/poster/q0x9nv1756020525.jpg",
"strSquare": "",
"strFanart": null,
"strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/a94iw91754808967.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=7ZR4cVGsvkk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489738",
- "idAPIfootball": "1553002",
- "strTimestamp": "2027-05-08T15:00:00",
- "strEvent": "Lens vs Monaco",
- "strEventAlternate": "Monaco @ Lens",
- "strFilename": "French Ligue 1 2027-05-08 Lens vs Monaco",
+ "idEvent": "2278386",
+ "idAPIfootball": "1387975",
+ "strTimestamp": "2026-04-26T15:15:00",
+ "strEvent": "Rennes vs Nantes",
+ "strEventAlternate": "Nantes @ Rennes",
+ "strFilename": "French Ligue 1 2026-04-26 Rennes vs Nantes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lens",
- "strAwayTeam": "Monaco",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Rennes",
+ "strAwayTeam": "Nantes",
+ "intHomeScore": "2",
"intRound": "31",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-08",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133822",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
- "idAwayTeam": "133823",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-26",
+ "dateEventLocal": "2026-04-26",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133719",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "idAwayTeam": "133861",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18385",
- "strVenue": "Stade Bollaert-Delelis",
+ "strResult": "",
+ "idVenue": "16104",
+ "strVenue": "Roazhon Park",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/nxkvpe1756020229.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/kdw40i1756020529.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/50fc4c1754808661.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/p8e9jr1754808971.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=F4j2xS4gAyw",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489739",
- "idAPIfootball": "1553001",
- "strTimestamp": "2027-05-08T15:00:00",
- "strEvent": "Le Mans vs Troyes",
- "strEventAlternate": "Troyes @ Le Mans",
- "strFilename": "French Ligue 1 2027-05-08 Le Mans vs Troyes",
- "strSport": "Soccer",
- "idLeague": "4334",
- "strLeague": "French Ligue 1",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Mans",
- "strAwayTeam": "Troyes",
- "intHomeScore": null,
- "intRound": "31",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-08",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133848",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
- "idAwayTeam": "134789",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "26610",
- "strVenue": "Stade Marie-Marvingt",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/1fv6z31781251810.jpg",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/au60ae1781249215.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2489740",
- "idAPIfootball": "1553007",
- "strTimestamp": "2027-05-09T18:45:00",
- "strEvent": "Lyon vs Paris Saint-Germain",
- "strEventAlternate": "Paris Saint-Germain @ Lyon",
- "strFilename": "French Ligue 1 2027-05-09 Lyon vs Paris Saint-Germain",
+ "idEvent": "2278391",
+ "idAPIfootball": "1387980",
+ "strTimestamp": "2026-05-02T17:00:00",
+ "strEvent": "Metz vs Monaco",
+ "strEventAlternate": "Monaco @ Metz",
+ "strFilename": "French Ligue 1 2026-05-02 Metz vs Monaco",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lyon",
- "strAwayTeam": "Paris Saint-Germain",
- "intHomeScore": null,
- "intRound": "31",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-09",
- "dateEventLocal": null,
- "strTime": "18:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133713",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
- "idAwayTeam": "133714",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16131",
- "strVenue": "Groupama Stadium",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/tqab0z1781251530.jpg",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/cuk40j1781249216.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2489741",
- "idAPIfootball": "1553010",
- "strTimestamp": "2027-05-16T15:00:00",
- "strEvent": "Lille vs Angers",
- "strEventAlternate": "Angers @ Lille",
- "strFilename": "French Ligue 1 2027-05-16 Lille vs Angers",
- "strSport": "Soccer",
- "idLeague": "4334",
- "strLeague": "French Ligue 1",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lille",
- "strAwayTeam": "Angers",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Metz",
+ "strAwayTeam": "Monaco",
+ "intHomeScore": "1",
"intRound": "32",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-16",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133711",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
- "idAwayTeam": "134709",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-02",
+ "dateEventLocal": "2026-05-02",
+ "strTime": "17:00:00",
+ "strTimeLocal": "19:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133883",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
+ "idAwayTeam": "133823",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17390",
- "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
+ "strResult": "",
+ "idVenue": "16242",
+ "strVenue": "Stade Saint-Symphorien",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/qcumgi1756019797.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/cu8nwd1756020546.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7y14ic1754727108.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/n4yzmo1754809007.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=dTKWnLwgM8g",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489742",
- "idAPIfootball": "1553011",
- "strTimestamp": "2027-05-16T15:00:00",
- "strEvent": "Lyon vs Le Mans",
- "strEventAlternate": "Le Mans @ Lyon",
- "strFilename": "French Ligue 1 2027-05-16 Lyon vs Le Mans",
+ "idEvent": "2278392",
+ "idAPIfootball": "1387981",
+ "strTimestamp": "2026-05-02T13:00:00",
+ "strEvent": "Nantes vs Marseille",
+ "strEventAlternate": "Marseille @ Nantes",
+ "strFilename": "French Ligue 1 2026-05-02 Nantes vs Marseille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lyon",
- "strAwayTeam": "Le Mans",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nantes",
+ "strAwayTeam": "Marseille",
+ "intHomeScore": "3",
"intRound": "32",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-16",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133713",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
- "idAwayTeam": "133848",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-02",
+ "dateEventLocal": "2026-05-02",
+ "strTime": "13:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133861",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
+ "idAwayTeam": "133707",
+ "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16131",
- "strVenue": "Groupama Stadium",
+ "strResult": "",
+ "idVenue": "16244",
+ "strVenue": "Stade de la Beaujoire - Louis Fonteneau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/c1zs0k1781251530.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/r2di6d1756020549.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/ku6f091781249217.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/u7y3qs1754809010.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=CjyEvOnE46s",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489743",
- "idAPIfootball": "1553012",
- "strTimestamp": "2027-05-16T15:00:00",
- "strEvent": "Marseille vs Lens",
- "strEventAlternate": "Lens @ Marseille",
- "strFilename": "French Ligue 1 2027-05-16 Marseille vs Lens",
+ "idEvent": "2278393",
+ "idAPIfootball": "1387982",
+ "strTimestamp": "2026-05-02T19:05:00",
+ "strEvent": "Nice vs Lens",
+ "strEventAlternate": "Lens @ Nice",
+ "strFilename": "French Ligue 1 2026-05-02 Nice vs Lens",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Marseille",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nice",
"strAwayTeam": "Lens",
- "intHomeScore": null,
+ "intHomeScore": "1",
"intRound": "32",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-16",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133707",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-02",
+ "dateEventLocal": "2026-05-02",
+ "strTime": "19:05:00",
+ "strTimeLocal": "21:05:00",
+ "strGroup": "",
+ "idHomeTeam": "133712",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
"idAwayTeam": "133822",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "27345",
- "strVenue": "Orange Vélodrome",
+ "strResult": "",
+ "idVenue": "16106",
+ "strVenue": "Allianz Riviera",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/b2uz901781251531.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/me619a1756020553.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/lcy5kg1781249510.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/92tdeb1754809014.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=icdxXOi3Mxs",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489744",
- "idAPIfootball": "1553014",
- "strTimestamp": "2027-05-16T15:00:00",
- "strEvent": "Paris Saint-Germain vs Nice",
- "strEventAlternate": "Nice @ Paris Saint-Germain",
- "strFilename": "French Ligue 1 2027-05-16 Paris Saint-Germain vs Nice",
+ "idEvent": "2278395",
+ "idAPIfootball": "1387984",
+ "strTimestamp": "2026-05-02T15:00:00",
+ "strEvent": "Paris Saint-Germain vs Lorient",
+ "strEventAlternate": "Lorient @ Paris SG",
+ "strFilename": "French Ligue 1 2026-05-02 Paris Saint-Germain vs Lorient",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris Saint-Germain",
- "strAwayTeam": "Nice",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris SG",
+ "strAwayTeam": "Lorient",
+ "intHomeScore": "2",
"intRound": "32",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-16",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-02",
+ "dateEventLocal": "2026-05-02",
"strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
"idHomeTeam": "133714",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
- "idAwayTeam": "133712",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "idAwayTeam": "133715",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "16024",
"strVenue": "Parc des Princes",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/mghma91781251532.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/dw5vo21756020560.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/2e4cht1781249219.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/r0j5gp1754809021.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=NGqdFhYCrRg",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489745",
- "idAPIfootball": "1553013",
- "strTimestamp": "2027-05-16T15:00:00",
- "strEvent": "Monaco vs Paris FC",
- "strEventAlternate": "Paris FC @ Monaco",
- "strFilename": "French Ligue 1 2027-05-16 Monaco vs Paris FC",
+ "idEvent": "2278388",
+ "idAPIfootball": "1387977",
+ "strTimestamp": "2026-05-03T15:15:00",
+ "strEvent": "Auxerre vs Angers",
+ "strEventAlternate": "Angers @ Auxerre",
+ "strFilename": "French Ligue 1 2026-05-03 Auxerre vs Angers",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Monaco",
- "strAwayTeam": "Paris FC",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Auxerre",
+ "strAwayTeam": "Angers",
+ "intHomeScore": "3",
"intRound": "32",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-16",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133823",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
- "idAwayTeam": "135465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-03",
+ "dateEventLocal": "2026-05-03",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134788",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "idAwayTeam": "134709",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16243",
- "strVenue": "Stade Louis II",
- "strCountry": "Monaco",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/8xedqh1756019801.jpg",
+ "strResult": "",
+ "idVenue": "16189",
+ "strVenue": "Stade de l'Abbé Deschamps",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/84lbhm1756020535.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yhixml1754727112.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/egpp551754808996.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=u-BRqW-c9Bk",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489746",
- "idAPIfootball": "1553015",
- "strTimestamp": "2027-05-16T15:00:00",
- "strEvent": "Strasbourg vs Troyes",
- "strEventAlternate": "Troyes @ Strasbourg",
- "strFilename": "French Ligue 1 2027-05-16 Strasbourg vs Troyes",
+ "idEvent": "2278389",
+ "idAPIfootball": "1387978",
+ "strTimestamp": "2026-05-03T13:00:00",
+ "strEvent": "Lille vs Le Havre",
+ "strEventAlternate": "Le Havre @ Lille",
+ "strFilename": "French Ligue 1 2026-05-03 Lille vs Le Havre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Strasbourg",
- "strAwayTeam": "Troyes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lille",
+ "strAwayTeam": "Le Havre",
+ "intHomeScore": "1",
"intRound": "32",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-16",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133882",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
- "idAwayTeam": "134789",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-03",
+ "dateEventLocal": "2026-05-03",
+ "strTime": "13:00:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133711",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "idAwayTeam": "133862",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18120",
- "strVenue": "Stade de la Meinau",
+ "strResult": "",
+ "idVenue": "17390",
+ "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/cnhacu1781251811.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/h41roy1756020539.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/pz60pt1781249220.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ay26sx1754808999.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=wCFc2AKzCmw",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489747",
- "idAPIfootball": "1553016",
- "strTimestamp": "2027-05-16T15:00:00",
- "strEvent": "Toulouse vs Lorient",
- "strEventAlternate": "Lorient @ Toulouse",
- "strFilename": "French Ligue 1 2027-05-16 Toulouse vs Lorient",
+ "idEvent": "2278390",
+ "idAPIfootball": "1387979",
+ "strTimestamp": "2026-05-03T18:45:00",
+ "strEvent": "Lyon vs Rennes",
+ "strEventAlternate": "Rennes @ Lyon",
+ "strFilename": "French Ligue 1 2026-05-03 Lyon vs Rennes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Toulouse",
- "strAwayTeam": "Lorient",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lyon",
+ "strAwayTeam": "Rennes",
+ "intHomeScore": "4",
"intRound": "32",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-16",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133703",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
- "idAwayTeam": "133715",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-03",
+ "dateEventLocal": "2026-05-03",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133713",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "idAwayTeam": "133719",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18238",
- "strVenue": "Stadium de Toulouse",
+ "strResult": "",
+ "idVenue": "16131",
+ "strVenue": "Groupama Stadium",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/trsna31756020407.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/4utj9y1756020542.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/j36qfo1754808827.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/poljil1754809003.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=xySY2wnFQck",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489748",
- "idAPIfootball": "1553009",
- "strTimestamp": "2027-05-16T15:00:00",
- "strEvent": "Brest vs Le Havre",
- "strEventAlternate": "Le Havre @ Brest",
- "strFilename": "French Ligue 1 2027-05-16 Brest vs Le Havre",
+ "idEvent": "2278394",
+ "idAPIfootball": "1387983",
+ "strTimestamp": "2026-05-03T15:15:00",
+ "strEvent": "Paris FC vs Brest",
+ "strEventAlternate": "Brest @ Paris FC",
+ "strFilename": "French Ligue 1 2026-05-03 Paris FC vs Brest",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Brest",
- "strAwayTeam": "Le Havre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris FC",
+ "strAwayTeam": "Brest",
+ "intHomeScore": "4",
"intRound": "32",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-16",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133704",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
- "idAwayTeam": "133862",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-03",
+ "dateEventLocal": "2026-05-03",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "135465",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "idAwayTeam": "133704",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17543",
- "strVenue": "Stade Francis-Le Blé",
+ "strResult": "",
+ "idVenue": "23528",
+ "strVenue": "Stade Jean-Bouin",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/kueoyy1756020285.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/tnkxtf1756020556.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2xwwwj1754808737.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4hn07i1754809017.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=rhzt4lUB_ZA",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489749",
- "idAPIfootball": "1553008",
- "strTimestamp": "2027-05-16T15:00:00",
- "strEvent": "Auxerre vs Rennes",
- "strEventAlternate": "Rennes @ Auxerre",
- "strFilename": "French Ligue 1 2027-05-16 Auxerre vs Rennes",
+ "idEvent": "2278396",
+ "idAPIfootball": "1387985",
+ "strTimestamp": "2026-05-03T15:15:00",
+ "strEvent": "Strasbourg vs Toulouse",
+ "strEventAlternate": "Toulouse @ Strasbourg",
+ "strFilename": "French Ligue 1 2026-05-03 Strasbourg vs Toulouse",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Auxerre",
- "strAwayTeam": "Rennes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Strasbourg",
+ "strAwayTeam": "Toulouse",
+ "intHomeScore": "1",
"intRound": "32",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-16",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134788",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
- "idAwayTeam": "133719",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-03",
+ "dateEventLocal": "2026-05-03",
+ "strTime": "15:15:00",
+ "strTimeLocal": "17:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133882",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "idAwayTeam": "133703",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16189",
- "strVenue": "Stade de l'Abbé Deschamps",
+ "strResult": "",
+ "idVenue": "18120",
+ "strVenue": "Stade de la Meinau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/wiuubf1756020221.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/8ifbfh1756020563.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7us3t81754808654.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5zib7k1754809025.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=QEsjtV-fvDM",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489750",
- "idAPIfootball": "1553017",
- "strTimestamp": "2027-05-22T15:00:00",
- "strEvent": "Angers vs Brest",
- "strEventAlternate": "Brest @ Angers",
- "strFilename": "French Ligue 1 2027-05-22 Angers vs Brest",
+ "idEvent": "2278400",
+ "idAPIfootball": "1387989",
+ "strTimestamp": "2026-05-08T18:45:00",
+ "strEvent": "Lens vs Nantes",
+ "strEventAlternate": "Nantes @ Lens",
+ "strFilename": "French Ligue 1 2026-05-08 Lens vs Nantes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Angers",
- "strAwayTeam": "Brest",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lens",
+ "strAwayTeam": "Nantes",
+ "intHomeScore": "1",
"intRound": "33",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-22",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134709",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
- "idAwayTeam": "133704",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-08",
+ "dateEventLocal": "2026-05-08",
+ "strTime": "18:45:00",
+ "strTimeLocal": "20:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133822",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "idAwayTeam": "133861",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "29067",
- "strVenue": "Stade Raymond Kopa",
+ "strResult": "",
+ "idVenue": "18385",
+ "strVenue": "Stade Bollaert-Delelis",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/npnew21756019611.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/yxstsc1756020577.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3wi87j1754726891.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jeal731754809057.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=GlOJdPsCCck",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489751",
- "idAPIfootball": "1553022",
- "strTimestamp": "2027-05-22T15:00:00",
- "strEvent": "Nice vs Monaco",
- "strEventAlternate": "Monaco @ Nice",
- "strFilename": "French Ligue 1 2027-05-22 Nice vs Monaco",
+ "idEvent": "2278397",
+ "idAPIfootball": "1387986",
+ "strTimestamp": "2026-05-10T19:00:00",
+ "strEvent": "Angers vs Strasbourg",
+ "strEventAlternate": "Strasbourg @ Angers",
+ "strFilename": "French Ligue 1 2026-05-10 Angers vs Strasbourg",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Nice",
- "strAwayTeam": "Monaco",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Angers",
+ "strAwayTeam": "Strasbourg",
+ "intHomeScore": "1",
"intRound": "33",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-22",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133712",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
- "idAwayTeam": "133823",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-10",
+ "dateEventLocal": "2026-05-10",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134709",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "idAwayTeam": "133882",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16106",
- "strVenue": "Allianz Riviera",
+ "strResult": "",
+ "idVenue": "29067",
+ "strVenue": "Stade Raymond Kopa",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/uejfnq1756020180.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/dxlpuf1756020567.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/p6mmgr1754808610.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/v1lvpz1754809028.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=NU9InqV3vDQ",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489752",
- "idAPIfootball": "1553024",
- "strTimestamp": "2027-05-22T15:00:00",
- "strEvent": "Toulouse vs Auxerre",
- "strEventAlternate": "Auxerre @ Toulouse",
- "strFilename": "French Ligue 1 2027-05-22 Toulouse vs Auxerre",
+ "idEvent": "2278398",
+ "idAPIfootball": "1387987",
+ "strTimestamp": "2026-05-10T19:00:00",
+ "strEvent": "Auxerre vs Nice",
+ "strEventAlternate": "Nice @ Auxerre",
+ "strFilename": "French Ligue 1 2026-05-10 Auxerre vs Nice",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Toulouse",
- "strAwayTeam": "Auxerre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Auxerre",
+ "strAwayTeam": "Nice",
+ "intHomeScore": "2",
"intRound": "33",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-22",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133703",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
- "idAwayTeam": "134788",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-10",
+ "dateEventLocal": "2026-05-10",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134788",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
+ "idAwayTeam": "133712",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18238",
- "strVenue": "Stadium de Toulouse",
+ "strResult": "",
+ "idVenue": "16189",
+ "strVenue": "Stade de l'Abbé Deschamps",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/p1z6z71756020152.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/z7elsb1756020570.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zs6geg1754808581.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/i25dem1754809032.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=c3FvRwSyjbM",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489753",
- "idAPIfootball": "1553021",
- "strTimestamp": "2027-05-22T15:00:00",
- "strEvent": "Lorient vs Lyon",
- "strEventAlternate": "Lyon @ Lorient",
- "strFilename": "French Ligue 1 2027-05-22 Lorient vs Lyon",
+ "idEvent": "2278399",
+ "idAPIfootball": "1387988",
+ "strTimestamp": "2026-05-10T19:00:00",
+ "strEvent": "Le Havre vs Marseille",
+ "strEventAlternate": "Marseille @ Le Havre",
+ "strFilename": "French Ligue 1 2026-05-10 Le Havre vs Marseille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lorient",
- "strAwayTeam": "Lyon",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Le Havre",
+ "strAwayTeam": "Marseille",
+ "intHomeScore": "0",
"intRound": "33",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-22",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133715",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
- "idAwayTeam": "133713",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-10",
+ "dateEventLocal": "2026-05-10",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133862",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "idAwayTeam": "133707",
+ "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16183",
- "strVenue": "Stade du Moustoir",
+ "strResult": "",
+ "idVenue": "16108",
+ "strVenue": "Stade Océane",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/8txxby1756019927.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/9yrxz51756020574.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ua44761754727248.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fecwal1754809053.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=LNY5SOamNuQ",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489754",
- "idAPIfootball": "1553025",
- "strTimestamp": "2027-05-22T15:00:00",
- "strEvent": "Troyes vs Paris Saint-Germain",
- "strEventAlternate": "Paris Saint-Germain @ Troyes",
- "strFilename": "French Ligue 1 2027-05-22 Troyes vs Paris Saint-Germain",
+ "idEvent": "2278401",
+ "idAPIfootball": "1387990",
+ "strTimestamp": "2026-05-10T19:00:00",
+ "strEvent": "Metz vs Lorient",
+ "strEventAlternate": "Lorient @ Metz",
+ "strFilename": "French Ligue 1 2026-05-10 Metz vs Lorient",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Troyes",
- "strAwayTeam": "Paris Saint-Germain",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Metz",
+ "strAwayTeam": "Lorient",
+ "intHomeScore": "0",
"intRound": "33",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-22",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134789",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
- "idAwayTeam": "133714",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-10",
+ "dateEventLocal": "2026-05-10",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133883",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
+ "idAwayTeam": "133715",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16192",
- "strVenue": "Stade de l'Aube",
+ "strResult": "",
+ "idVenue": "16242",
+ "strVenue": "Stade Saint-Symphorien",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/1sc3g41781251812.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/h9m5ds1756020598.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/b5pyqi1781249221.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/p9n7lq1754809061.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=yr7SoS5GJu8",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489755",
- "idAPIfootball": "1553018",
- "strTimestamp": "2027-05-22T15:00:00",
- "strEvent": "Le Havre vs Lille",
- "strEventAlternate": "Lille @ Le Havre",
- "strFilename": "French Ligue 1 2027-05-22 Le Havre vs Lille",
+ "idEvent": "2278402",
+ "idAPIfootball": "1387991",
+ "strTimestamp": "2026-05-10T19:00:00",
+ "strEvent": "Monaco vs Lille",
+ "strEventAlternate": "Lille @ Monaco",
+ "strFilename": "French Ligue 1 2026-05-10 Monaco vs Lille",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Havre",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Monaco",
"strAwayTeam": "Lille",
- "intHomeScore": null,
+ "intHomeScore": "0",
"intRound": "33",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-22",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133862",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-10",
+ "dateEventLocal": "2026-05-10",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133823",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"idAwayTeam": "133711",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16108",
- "strVenue": "Stade Océane",
- "strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/zaoule1756019885.jpg",
+ "strResult": "",
+ "idVenue": "16243",
+ "strVenue": "Stade Louis II",
+ "strCountry": "Monaco",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/9ergpc1756020602.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/75w78g1754727203.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/sirvfw1754809064.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=CdJ2YDNlQ0k",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489756",
- "idAPIfootball": "1553023",
- "strTimestamp": "2027-05-22T15:00:00",
- "strEvent": "Paris FC vs Marseille",
- "strEventAlternate": "Marseille @ Paris FC",
- "strFilename": "French Ligue 1 2027-05-22 Paris FC vs Marseille",
+ "idEvent": "2278403",
+ "idAPIfootball": "1387992",
+ "strTimestamp": "2026-05-10T19:00:00",
+ "strEvent": "Paris Saint-Germain vs Brest",
+ "strEventAlternate": "Brest @ Paris SG",
+ "strFilename": "French Ligue 1 2026-05-10 Paris Saint-Germain vs Brest",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris FC",
- "strAwayTeam": "Marseille",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris SG",
+ "strAwayTeam": "Brest",
+ "intHomeScore": "1",
"intRound": "33",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-22",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "135465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
- "idAwayTeam": "133707",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-10",
+ "dateEventLocal": "2026-05-10",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133714",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
+ "idAwayTeam": "133704",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "23528",
- "strVenue": "Stade Jean-Bouin",
+ "strResult": "",
+ "idVenue": "16024",
+ "strVenue": "Parc des Princes",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/zpfbt61781251534.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/vu0ztz1756020605.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/g9cn851781249511.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vc5hzq1754809068.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=8zz85z0uoDY",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489757",
- "idAPIfootball": "1553020",
- "strTimestamp": "2027-05-22T15:00:00",
- "strEvent": "Lens vs Rennes",
- "strEventAlternate": "Rennes @ Lens",
- "strFilename": "French Ligue 1 2027-05-22 Lens vs Rennes",
+ "idEvent": "2278404",
+ "idAPIfootball": "1387993",
+ "strTimestamp": "2026-05-10T19:00:00",
+ "strEvent": "Rennes vs Paris FC",
+ "strEventAlternate": "Paris FC @ Rennes",
+ "strFilename": "French Ligue 1 2026-05-10 Rennes vs Paris FC",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lens",
- "strAwayTeam": "Rennes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Rennes",
+ "strAwayTeam": "Paris FC",
+ "intHomeScore": "2",
"intRound": "33",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-22",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133822",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
- "idAwayTeam": "133719",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-10",
+ "dateEventLocal": "2026-05-10",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133719",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
+ "idAwayTeam": "135465",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18385",
- "strVenue": "Stade Bollaert-Delelis",
+ "strResult": "",
+ "idVenue": "16104",
+ "strVenue": "Roazhon Park",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/jj0d161756020169.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/rjh35y1756020609.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/r6vor21754808599.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/cei0v01754809071.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=-FjEEBUSDTU",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489758",
- "idAPIfootball": "1553019",
- "strTimestamp": "2027-05-22T15:00:00",
- "strEvent": "Le Mans vs Strasbourg",
- "strEventAlternate": "Strasbourg @ Le Mans",
- "strFilename": "French Ligue 1 2027-05-22 Le Mans vs Strasbourg",
+ "idEvent": "2278405",
+ "idAPIfootball": "1387994",
+ "strTimestamp": "2026-05-10T19:00:00",
+ "strEvent": "Toulouse vs Lyon",
+ "strEventAlternate": "Lyon @ Toulouse",
+ "strFilename": "French Ligue 1 2026-05-10 Toulouse vs Lyon",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Le Mans",
- "strAwayTeam": "Strasbourg",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Toulouse",
+ "strAwayTeam": "Lyon",
+ "intHomeScore": "2",
"intRound": "33",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-22",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133848",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
- "idAwayTeam": "133882",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-10",
+ "dateEventLocal": "2026-05-10",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133703",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "idAwayTeam": "133713",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "26610",
- "strVenue": "Stade Marie-Marvingt",
+ "strResult": "",
+ "idVenue": "18238",
+ "strVenue": "Stadium de Toulouse",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/sh65ea1781251535.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/gg9shf1756020612.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/v1qmr41781249222.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fmk0qc1754809075.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=8sfHluk6bVE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489759",
- "idAPIfootball": "1553028",
- "strTimestamp": "2027-05-29T19:00:00",
- "strEvent": "Lille vs Le Mans",
- "strEventAlternate": "Le Mans @ Lille",
- "strFilename": "French Ligue 1 2027-05-29 Lille vs Le Mans",
+ "idEvent": "2278406",
+ "idAPIfootball": "1387995",
+ "strTimestamp": "2026-05-17T19:00:00",
+ "strEvent": "Brest vs Angers",
+ "strEventAlternate": "Angers @ Brest",
+ "strFilename": "French Ligue 1 2026-05-17 Brest vs Angers",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lille",
- "strAwayTeam": "Le Mans",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Brest",
+ "strAwayTeam": "Angers",
+ "intHomeScore": "1",
"intRound": "34",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-29",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-17",
+ "dateEventLocal": "2026-05-17",
"strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133711",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
- "idAwayTeam": "133848",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wjhziv1700145026.png",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133704",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
+ "idAwayTeam": "134709",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17390",
- "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
+ "strResult": "",
+ "idVenue": "17543",
+ "strVenue": "Stade Francis-Le Blé",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/uffe8n1781251536.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/ca82lw1756020616.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/4r2c5s1781249223.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fvdjvf1754809078.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=hgJO84HvpV8",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489760",
- "idAPIfootball": "1553029",
- "strTimestamp": "2027-05-29T19:00:00",
- "strEvent": "Lyon vs Paris FC",
- "strEventAlternate": "Paris FC @ Lyon",
- "strFilename": "French Ligue 1 2027-05-29 Lyon vs Paris FC",
+ "idEvent": "2278407",
+ "idAPIfootball": "1387996",
+ "strTimestamp": "2026-05-17T19:00:00",
+ "strEvent": "Lille vs Auxerre",
+ "strEventAlternate": "Auxerre @ Lille",
+ "strFilename": "French Ligue 1 2026-05-17 Lille vs Auxerre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Lyon",
- "strAwayTeam": "Paris FC",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lille",
+ "strAwayTeam": "Auxerre",
+ "intHomeScore": "0",
"intRound": "34",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-29",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-17",
+ "dateEventLocal": "2026-05-17",
"strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133713",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
- "idAwayTeam": "135465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133711",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
+ "idAwayTeam": "134788",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16131",
- "strVenue": "Groupama Stadium",
+ "strResult": "",
+ "idVenue": "17390",
+ "strVenue": "Decathlon Arena - Stade Pierre-Mauroy",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/5zq3dy1756020295.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/dazpr11756020619.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/paqn8e1754808747.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qtnsw41754809082.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=Fw_yofhcUGg",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489761",
- "idAPIfootball": "1553030",
- "strTimestamp": "2027-05-29T19:00:00",
- "strEvent": "Marseille vs Lorient",
- "strEventAlternate": "Lorient @ Marseille",
- "strFilename": "French Ligue 1 2027-05-29 Marseille vs Lorient",
+ "idEvent": "2278408",
+ "idAPIfootball": "1387997",
+ "strTimestamp": "2026-05-17T19:00:00",
+ "strEvent": "Lorient vs Le Havre",
+ "strEventAlternate": "Le Havre @ Lorient",
+ "strFilename": "French Ligue 1 2026-05-17 Lorient vs Le Havre",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Marseille",
- "strAwayTeam": "Lorient",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lorient",
+ "strAwayTeam": "Le Havre",
+ "intHomeScore": "0",
"intRound": "34",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-29",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-17",
+ "dateEventLocal": "2026-05-17",
"strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133707",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
- "idAwayTeam": "133715",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133715",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxsttw1473504748.png",
+ "idAwayTeam": "133862",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "27345",
- "strVenue": "Orange Vélodrome",
+ "strResult": "",
+ "idVenue": "16183",
+ "strVenue": "Stade du Moustoir",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/8an9111781251537.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/miy0tu1756020623.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/rk8dcc1781249511.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/s2uusm1754809086.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=N0POk5IyJuQ",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489762",
- "idAPIfootball": "1553032",
- "strTimestamp": "2027-05-29T19:00:00",
- "strEvent": "Paris Saint-Germain vs Toulouse",
- "strEventAlternate": "Toulouse @ Paris Saint-Germain",
- "strFilename": "French Ligue 1 2027-05-29 Paris Saint-Germain vs Toulouse",
+ "idEvent": "2278409",
+ "idAPIfootball": "1387998",
+ "strTimestamp": "2026-05-17T19:00:00",
+ "strEvent": "Lyon vs Lens",
+ "strEventAlternate": "Lens @ Lyon",
+ "strFilename": "French Ligue 1 2026-05-17 Lyon vs Lens",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Paris Saint-Germain",
- "strAwayTeam": "Toulouse",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Lyon",
+ "strAwayTeam": "Lens",
+ "intHomeScore": "0",
"intRound": "34",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-29",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-17",
+ "dateEventLocal": "2026-05-17",
"strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133714",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
- "idAwayTeam": "133703",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133713",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
+ "idAwayTeam": "133822",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16024",
- "strVenue": "Parc des Princes",
+ "strResult": "",
+ "idVenue": "16131",
+ "strVenue": "Groupama Stadium",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/qi0qro1781251538.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/7bfk8r1756020627.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/ea7tur1781249225.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fn6e0p1754809089.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=gfQUAxmh8Y8",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489763",
- "idAPIfootball": "1553031",
- "strTimestamp": "2027-05-29T19:00:00",
- "strEvent": "Monaco vs Troyes",
- "strEventAlternate": "Troyes @ Monaco",
- "strFilename": "French Ligue 1 2027-05-29 Monaco vs Troyes",
+ "idEvent": "2278410",
+ "idAPIfootball": "1387999",
+ "strTimestamp": "2026-05-17T19:00:00",
+ "strEvent": "Marseille vs Rennes",
+ "strEventAlternate": "Rennes @ Marseille",
+ "strFilename": "French Ligue 1 2026-05-17 Marseille vs Rennes",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Monaco",
- "strAwayTeam": "Troyes",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Marseille",
+ "strAwayTeam": "Rennes",
+ "intHomeScore": "3",
"intRound": "34",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-29",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-17",
+ "dateEventLocal": "2026-05-17",
"strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133823",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
- "idAwayTeam": "134789",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sl5kzg1766617559.png",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133707",
+ "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/c6bazh1779212287.png",
+ "idAwayTeam": "133719",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16243",
- "strVenue": "Stade Louis II",
- "strCountry": "Monaco",
- "strCity": null,
- "strPoster": "https://www.thesportsdb.com/images/media/event/poster/0ns2td1781251813.jpg",
+ "strResult": "",
+ "idVenue": "27345",
+ "strVenue": "Orange Vélodrome",
+ "strCountry": "France",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/y52fon1756020630.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/d6lufr1781249226.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/w1bq3s1754809093.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=CSPT8W3wxBE",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489764",
- "idAPIfootball": "1553033",
- "strTimestamp": "2027-05-29T19:00:00",
- "strEvent": "Rennes vs Angers",
- "strEventAlternate": "Angers @ Rennes",
- "strFilename": "French Ligue 1 2027-05-29 Rennes vs Angers",
+ "idEvent": "2278411",
+ "idAPIfootball": "1388000",
+ "strTimestamp": "2026-05-17T19:00:00",
+ "strEvent": "Nantes vs Toulouse",
+ "strEventAlternate": "Toulouse @ Nantes",
+ "strFilename": "French Ligue 1 2026-05-17 Nantes vs Toulouse",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Rennes",
- "strAwayTeam": "Angers",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nantes",
+ "strAwayTeam": "Toulouse",
+ "intHomeScore": "0",
"intRound": "34",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-29",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-17",
+ "dateEventLocal": "2026-05-17",
"strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133719",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ypturx1473504818.png",
- "idAwayTeam": "134709",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ix6q4w1678808069.png",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133861",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/mla9x61678808018.png",
+ "idAwayTeam": "133703",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/17eqox1688449282.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16104",
- "strVenue": "Roazhon Park",
+ "strResult": "",
+ "idVenue": "16244",
+ "strVenue": "Stade de la Beaujoire - Louis Fonteneau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/mxpkye1756020466.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/zdeljd1756020634.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/51grmw1754808888.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hov16e1754809096.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "AWD",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489765",
- "idAPIfootball": "1553034",
- "strTimestamp": "2027-05-29T19:00:00",
- "strEvent": "Strasbourg vs Nice",
- "strEventAlternate": "Nice @ Strasbourg",
- "strFilename": "French Ligue 1 2027-05-29 Strasbourg vs Nice",
+ "idEvent": "2278412",
+ "idAPIfootball": "1388001",
+ "strTimestamp": "2026-05-17T19:00:00",
+ "strEvent": "Nice vs Metz",
+ "strEventAlternate": "Metz @ Nice",
+ "strFilename": "French Ligue 1 2026-05-17 Nice vs Metz",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Strasbourg",
- "strAwayTeam": "Nice",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Nice",
+ "strAwayTeam": "Metz",
+ "intHomeScore": "0",
"intRound": "34",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-29",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-17",
+ "dateEventLocal": "2026-05-17",
"strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133882",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
- "idAwayTeam": "133712",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133712",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/msy7ly1621593859.png",
+ "idAwayTeam": "133883",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1iuew61688452857.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18120",
- "strVenue": "Stade de la Meinau",
+ "strResult": "",
+ "idVenue": "16106",
+ "strVenue": "Allianz Riviera",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/u1f5p11756020439.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/9dgzfg1756020637.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/d9v0i01754808859.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2o9vkj1754809100.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=SzEBLR2VXjA",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489766",
- "idAPIfootball": "1553027",
- "strTimestamp": "2027-05-29T19:00:00",
- "strEvent": "Brest vs Lens",
- "strEventAlternate": "Lens @ Brest",
- "strFilename": "French Ligue 1 2027-05-29 Brest vs Lens",
+ "idEvent": "2278413",
+ "idAPIfootball": "1388002",
+ "strTimestamp": "2026-05-17T19:00:00",
+ "strEvent": "Paris FC vs Paris Saint-Germain",
+ "strEventAlternate": "Paris SG @ Paris FC",
+ "strFilename": "French Ligue 1 2026-05-17 Paris FC vs Paris Saint-Germain",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Brest",
- "strAwayTeam": "Lens",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Paris FC",
+ "strAwayTeam": "Paris SG",
+ "intHomeScore": "2",
"intRound": "34",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-29",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-17",
+ "dateEventLocal": "2026-05-17",
"strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133704",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/z69be41598797026.png",
- "idAwayTeam": "133822",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3pxoum1598797195.png",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "135465",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuvtsy1447594254.png",
+ "idAwayTeam": "133714",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rwqrrq1473504808.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17543",
- "strVenue": "Stade Francis-Le Blé",
+ "strResult": "",
+ "idVenue": "23528",
+ "strVenue": "Stade Jean-Bouin",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/8aarw51756020508.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/bjw8851756020641.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6nnojp1754808949.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mmgh7n1754809104.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=pArASzFU6XA",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489767",
- "idAPIfootball": "1553026",
- "strTimestamp": "2027-05-29T19:00:00",
- "strEvent": "Auxerre vs Le Havre",
- "strEventAlternate": "Le Havre @ Auxerre",
- "strFilename": "French Ligue 1 2027-05-29 Auxerre vs Le Havre",
+ "idEvent": "2278414",
+ "idAPIfootball": "1388003",
+ "strTimestamp": "2026-05-17T19:00:00",
+ "strEvent": "Strasbourg vs Monaco",
+ "strEventAlternate": "Monaco @ Strasbourg",
+ "strFilename": "French Ligue 1 2026-05-17 Strasbourg vs Monaco",
"strSport": "Soccer",
"idLeague": "4334",
"strLeague": "French Ligue 1",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/9f7z9d1742983155.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Auxerre",
- "strAwayTeam": "Le Havre",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Strasbourg",
+ "strAwayTeam": "Monaco",
+ "intHomeScore": "5",
"intRound": "34",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-29",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-17",
+ "dateEventLocal": "2026-05-17",
"strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134788",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lzdtbf1658753355.png",
- "idAwayTeam": "133862",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aikowk1546475003.png",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133882",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b8k77w1766625501.png",
+ "idAwayTeam": "133823",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/exjf5l1678808044.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "16189",
- "strVenue": "Stade de l'Abbé Deschamps",
+ "strResult": "",
+ "idVenue": "18120",
+ "strVenue": "Stade de la Meinau",
"strCountry": "France",
- "strCity": null,
- "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/1f4no41756019709.jpg",
+ "strCity": "",
+ "strPoster": "https://r2.thesportsdb.com/images/media/event/poster/et5lfh1756020644.jpg",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/p0zm2i1754727015.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5b8zue1754809107.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=EMMNqEtcoZ8",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
}
diff --git a/lib/data/sports/4335.json b/lib/data/sports/4335.json
index d193e13..6f4cbc8 100644
--- a/lib/data/sports/4335.json
+++ b/lib/data/sports/4335.json
@@ -1,7 +1,7 @@
{
"leagueId": "4335",
"leagueName": "La Liga",
- "updatedAt": "2026-06-12T14:35:45.359Z",
+ "updatedAt": "2026-06-11T02:21:41.218Z",
"events": [
{
"idEvent": "2279399",
diff --git a/lib/data/sports/4337.json b/lib/data/sports/4337.json
index aeba452..bff68ef 100644
--- a/lib/data/sports/4337.json
+++ b/lib/data/sports/4337.json
@@ -1,14999 +1,14999 @@
{
"leagueId": "4337",
"leagueName": "Eredivisie",
- "updatedAt": "2026-06-12T14:42:13.303Z",
+ "updatedAt": "2026-06-11T02:28:14.605Z",
"events": [
{
- "idEvent": "2489066",
- "idAPIfootball": "1552117",
- "strTimestamp": "2026-08-07T18:00:00",
- "strEvent": "Cambuur vs Excelsior",
- "strEventAlternate": "Excelsior @ Cambuur",
- "strFilename": "Dutch Eredivisie 2026-08-07 Cambuur vs Excelsior",
+ "idEvent": "2268153",
+ "idAPIfootball": "1380867",
+ "strTimestamp": "2025-08-08T18:00:00",
+ "strEvent": "Fortuna Sittard vs Go Ahead Eagles",
+ "strEventAlternate": "Go Ahead Eagles @ Fortuna Sittard",
+ "strFilename": "Dutch Eredivisie 2025-08-08 Fortuna Sittard vs Go Ahead Eagles",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Cambuur",
- "strAwayTeam": "Excelsior",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Fortuna Sittard",
+ "strAwayTeam": "Go Ahead Eagles",
+ "intHomeScore": "2",
"intRound": "1",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-07",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-08",
+ "dateEventLocal": "2025-08-08",
"strTime": "18:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134303",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
- "idAwayTeam": "133757",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134264",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "idAwayTeam": "134304",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "34141",
- "strVenue": "Kooi Stadion",
+ "strResult": "",
+ "idVenue": "18441",
+ "strVenue": "Fortuna Sittard Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jd9ygo1770369669.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489067",
- "idAPIfootball": "1552118",
- "strTimestamp": "2026-08-08T14:30:00",
- "strEvent": "NEC Nijmegen vs Telstar",
- "strEventAlternate": "Telstar @ NEC Nijmegen",
- "strFilename": "Dutch Eredivisie 2026-08-08 NEC Nijmegen vs Telstar",
+ "idEvent": "2268154",
+ "idAPIfootball": "1380868",
+ "strTimestamp": "2025-08-09T14:30:00",
+ "strEvent": "NEC Nijmegen vs Excelsior",
+ "strEventAlternate": "Excelsior @ NEC Nijmegen",
+ "strFilename": "Dutch Eredivisie 2025-08-09 NEC Nijmegen vs Excelsior",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "NEC Nijmegen",
- "strAwayTeam": "Telstar",
- "intHomeScore": null,
+ "strAwayTeam": "Excelsior",
+ "intHomeScore": "5",
"intRound": "1",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-08",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-09",
+ "dateEventLocal": "2025-08-09",
"strTime": "14:30:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
"idHomeTeam": "133760",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
- "idAwayTeam": "138004",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "idAwayTeam": "133757",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "17971",
"strVenue": "Goffertstadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/j1wwvz1770369673.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489068",
- "idAPIfootball": "1552119",
- "strTimestamp": "2026-08-08T16:45:00",
- "strEvent": "Go Ahead Eagles vs Willem II",
- "strEventAlternate": "Willem II @ Go Ahead Eagles",
- "strFilename": "Dutch Eredivisie 2026-08-08 Go Ahead Eagles vs Willem II",
+ "idEvent": "2268155",
+ "idAPIfootball": "1380869",
+ "strTimestamp": "2025-08-09T16:45:00",
+ "strEvent": "Feyenoord vs NAC Breda",
+ "strEventAlternate": "NAC Breda @ Feyenoord",
+ "strFilename": "Dutch Eredivisie 2025-08-09 Feyenoord vs NAC Breda",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Go Ahead Eagles",
- "strAwayTeam": "Willem II",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Feyenoord",
+ "strAwayTeam": "NAC Breda",
+ "intHomeScore": "2",
"intRound": "1",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-08",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-09",
+ "dateEventLocal": "2025-08-09",
"strTime": "16:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134304",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
- "idAwayTeam": "133827",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133758",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "idAwayTeam": "133773",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17966",
- "strVenue": "De Adelaarshorst",
+ "strResult": "",
+ "idVenue": "15855",
+ "strVenue": "Stadion Feyenoord",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5b7dtx1625514327.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/uiqzz71750406998.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489069",
- "idAPIfootball": "1552120",
- "strTimestamp": "2026-08-08T18:00:00",
- "strEvent": "PSV Eindhoven vs Fortuna Sittard",
- "strEventAlternate": "Fortuna Sittard @ PSV Eindhoven",
- "strFilename": "Dutch Eredivisie 2026-08-08 PSV Eindhoven vs Fortuna Sittard",
+ "idEvent": "2268156",
+ "idAPIfootball": "1380870",
+ "strTimestamp": "2025-08-09T18:00:00",
+ "strEvent": "Heerenveen vs FC Volendam",
+ "strEventAlternate": "FC Volendam @ Heerenveen",
+ "strFilename": "Dutch Eredivisie 2025-08-09 Heerenveen vs FC Volendam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PSV Eindhoven",
- "strAwayTeam": "Fortuna Sittard",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heerenveen",
+ "strAwayTeam": "FC Volendam",
+ "intHomeScore": "1",
"intRound": "1",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-08",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-09",
+ "dateEventLocal": "2025-08-09",
"strTime": "18:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133768",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
- "idAwayTeam": "134264",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133759",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "idAwayTeam": "133867",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15844",
- "strVenue": "Philips Stadion",
+ "strResult": "",
+ "idVenue": "15861",
+ "strVenue": "Abe Lenstra Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8vcctt1770369766.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/w7lfuo1750407002.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489070",
- "idAPIfootball": "1552121",
- "strTimestamp": "2026-08-08T19:00:00",
- "strEvent": "AZ Alkmaar vs ADO Den Haag",
- "strEventAlternate": "ADO Den Haag @ AZ Alkmaar",
- "strFilename": "Dutch Eredivisie 2026-08-08 AZ Alkmaar vs ADO Den Haag",
+ "idEvent": "2268157",
+ "idAPIfootball": "1380871",
+ "strTimestamp": "2025-08-09T19:00:00",
+ "strEvent": "PSV Eindhoven vs Sparta Rotterdam",
+ "strEventAlternate": "Sparta Rotterdam @ PSV Eindhoven",
+ "strFilename": "Dutch Eredivisie 2025-08-09 PSV Eindhoven vs Sparta Rotterdam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "AZ Alkmaar",
- "strAwayTeam": "ADO Den Haag",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PSV Eindhoven",
+ "strAwayTeam": "Sparta Rotterdam",
+ "intHomeScore": "6",
"intRound": "1",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-08",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-09",
+ "dateEventLocal": "2025-08-09",
"strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133767",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
- "idAwayTeam": "133769",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133768",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "idAwayTeam": "133866",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15860",
- "strVenue": "AFAS Stadion Alkmaar",
+ "strResult": "",
+ "idVenue": "15844",
+ "strVenue": "Philips Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ethnbo1601658850.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5maicq1750407006.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489071",
- "idAPIfootball": "1552122",
- "strTimestamp": "2026-08-09T10:15:00",
- "strEvent": "Sparta Rotterdam vs Feyenoord",
- "strEventAlternate": "Feyenoord @ Sparta Rotterdam",
- "strFilename": "Dutch Eredivisie 2026-08-09 Sparta Rotterdam vs Feyenoord",
+ "idEvent": "2268158",
+ "idAPIfootball": "1380872",
+ "strTimestamp": "2025-08-10T10:15:00",
+ "strEvent": "PEC Zwolle vs Twente",
+ "strEventAlternate": "Twente @ PEC Zwolle",
+ "strFilename": "Dutch Eredivisie 2025-08-10 PEC Zwolle vs Twente",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Sparta Rotterdam",
- "strAwayTeam": "Feyenoord",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PEC Zwolle",
+ "strAwayTeam": "Twente",
+ "intHomeScore": "1",
"intRound": "1",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-09",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-10",
+ "dateEventLocal": "2025-08-10",
"strTime": "10:15:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133866",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
- "idAwayTeam": "133758",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133936",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "133774",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18581",
- "strVenue": "Spartastadion",
+ "strResult": "",
+ "idVenue": "18579",
+ "strVenue": "MAC³PARK Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/h4kemk1750407010.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489072",
- "idAPIfootball": "1552124",
- "strTimestamp": "2026-08-09T12:30:00",
- "strEvent": "PEC Zwolle vs Ajax",
- "strEventAlternate": "Ajax @ PEC Zwolle",
- "strFilename": "Dutch Eredivisie 2026-08-09 PEC Zwolle vs Ajax",
+ "idEvent": "2268159",
+ "idAPIfootball": "1380873",
+ "strTimestamp": "2025-08-10T12:30:00",
+ "strEvent": "Ajax vs SC Telstar",
+ "strEventAlternate": "SC Telstar @ Ajax",
+ "strFilename": "Dutch Eredivisie 2025-08-10 Ajax vs SC Telstar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PEC Zwolle",
- "strAwayTeam": "Ajax",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Ajax",
+ "strAwayTeam": "SC Telstar",
+ "intHomeScore": "2",
"intRound": "1",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-09",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-10",
+ "dateEventLocal": "2025-08-10",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133936",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
- "idAwayTeam": "133772",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133772",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "idAwayTeam": "138004",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18579",
- "strVenue": "MAC³PARK Stadion",
+ "strResult": "",
+ "idVenue": "21448",
+ "strVenue": "Johan Cruijff ArenA",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9it4ys1769670812.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/e9pnau1769670688.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489073",
- "idAPIfootball": "1552123",
- "strTimestamp": "2026-08-09T12:30:00",
- "strEvent": "Groningen vs Utrecht",
- "strEventAlternate": "Utrecht @ Groningen",
- "strFilename": "Dutch Eredivisie 2026-08-09 Groningen vs Utrecht",
+ "idEvent": "2268160",
+ "idAPIfootball": "1380874",
+ "strTimestamp": "2025-08-10T12:30:00",
+ "strEvent": "AZ Alkmaar vs Groningen",
+ "strEventAlternate": "Groningen @ AZ Alkmaar",
+ "strFilename": "Dutch Eredivisie 2025-08-10 AZ Alkmaar vs Groningen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Groningen",
- "strAwayTeam": "Utrecht",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "AZ Alkmaar",
+ "strAwayTeam": "Groningen",
+ "intHomeScore": "4",
"intRound": "1",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-09",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-10",
+ "dateEventLocal": "2025-08-10",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133762",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
- "idAwayTeam": "133764",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133767",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "idAwayTeam": "133762",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21331",
- "strVenue": "Euroborg",
+ "strResult": "",
+ "idVenue": "15860",
+ "strVenue": "AFAS Stadion Alkmaar",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ripdgx1750407017.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489074",
- "idAPIfootball": "1552125",
- "strTimestamp": "2026-08-09T14:45:00",
- "strEvent": "Heerenveen vs Twente",
- "strEventAlternate": "Twente @ Heerenveen",
- "strFilename": "Dutch Eredivisie 2026-08-09 Heerenveen vs Twente",
+ "idEvent": "2268161",
+ "idAPIfootball": "1380875",
+ "strTimestamp": "2025-08-10T14:45:00",
+ "strEvent": "Utrecht vs Heracles Almelo",
+ "strEventAlternate": "Heracles Almelo @ Utrecht",
+ "strFilename": "Dutch Eredivisie 2025-08-10 Utrecht vs Heracles Almelo",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Heerenveen",
- "strAwayTeam": "Twente",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Utrecht",
+ "strAwayTeam": "Heracles Almelo",
+ "intHomeScore": "4",
"intRound": "1",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-09",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-10",
+ "dateEventLocal": "2025-08-10",
"strTime": "14:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133759",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
- "idAwayTeam": "133774",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133764",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "idAwayTeam": "133766",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15861",
- "strVenue": "Abe Lenstra Stadion",
+ "strResult": "",
+ "idVenue": "15864",
+ "strVenue": "Stadion Galgenwaard",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4mh51n1750407021.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489075",
- "idAPIfootball": "1552126",
- "strTimestamp": "2026-08-14T18:00:00",
- "strEvent": "Telstar vs Sparta Rotterdam",
- "strEventAlternate": "Sparta Rotterdam @ Telstar",
- "strFilename": "Dutch Eredivisie 2026-08-14 Telstar vs Sparta Rotterdam",
+ "idEvent": "2268162",
+ "idAPIfootball": "1380876",
+ "strTimestamp": "2025-08-15T18:00:00",
+ "strEvent": "SC Telstar vs PEC Zwolle",
+ "strEventAlternate": "PEC Zwolle @ SC Telstar",
+ "strFilename": "Dutch Eredivisie 2025-08-15 SC Telstar vs PEC Zwolle",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Telstar",
- "strAwayTeam": "Sparta Rotterdam",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "SC Telstar",
+ "strAwayTeam": "PEC Zwolle",
+ "intHomeScore": "0",
"intRound": "2",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-14",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-15",
+ "dateEventLocal": "2025-08-15",
"strTime": "18:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
"idHomeTeam": "138004",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
- "idAwayTeam": "133866",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "idAwayTeam": "133936",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "17957",
"strVenue": "711 Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/li4c8o1750407025.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489076",
- "idAPIfootball": "1552127",
- "strTimestamp": "2026-08-15T14:30:00",
- "strEvent": "Willem II vs NEC Nijmegen",
- "strEventAlternate": "NEC Nijmegen @ Willem II",
- "strFilename": "Dutch Eredivisie 2026-08-15 Willem II vs NEC Nijmegen",
+ "idEvent": "2268163",
+ "idAPIfootball": "1380877",
+ "strTimestamp": "2025-08-16T19:00:00",
+ "strEvent": "Groningen vs Heerenveen",
+ "strEventAlternate": "Heerenveen @ Groningen",
+ "strFilename": "Dutch Eredivisie 2025-08-16 Groningen vs Heerenveen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Willem II",
- "strAwayTeam": "NEC Nijmegen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Groningen",
+ "strAwayTeam": "Heerenveen",
+ "intHomeScore": "2",
"intRound": "2",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-15",
- "dateEventLocal": null,
- "strTime": "14:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133827",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
- "idAwayTeam": "133760",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "dateEvent": "2025-08-16",
+ "dateEventLocal": "2025-08-16",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133762",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "idAwayTeam": "133759",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15856",
- "strVenue": "Koning Willem II Stadion",
+ "strResult": "",
+ "idVenue": "21331",
+ "strVenue": "Euroborg",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qawdkg1625514273.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/nhvkzg1750407028.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489077",
- "idAPIfootball": "1552128",
- "strTimestamp": "2026-08-15T16:45:00",
- "strEvent": "Utrecht vs AZ Alkmaar",
- "strEventAlternate": "AZ Alkmaar @ Utrecht",
- "strFilename": "Dutch Eredivisie 2026-08-15 Utrecht vs AZ Alkmaar",
+ "idEvent": "2268164",
+ "idAPIfootball": "1380878",
+ "strTimestamp": "2025-08-16T16:45:00",
+ "strEvent": "Excelsior vs Feyenoord",
+ "strEventAlternate": "Feyenoord @ Excelsior",
+ "strFilename": "Dutch Eredivisie 2025-08-16 Excelsior vs Feyenoord",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Utrecht",
- "strAwayTeam": "AZ Alkmaar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Excelsior",
+ "strAwayTeam": "Feyenoord",
+ "intHomeScore": "1",
"intRound": "2",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-15",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-16",
+ "dateEventLocal": "2025-08-16",
"strTime": "16:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133764",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
- "idAwayTeam": "133767",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133757",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "idAwayTeam": "133758",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15864",
- "strVenue": "Stadion Galgenwaard",
+ "strResult": "",
+ "idVenue": "15862",
+ "strVenue": "Van Donge and De Roo Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/tfm89n1770369676.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489078",
- "idAPIfootball": "1552129",
- "strTimestamp": "2026-08-15T18:00:00",
- "strEvent": "Excelsior vs PSV Eindhoven",
- "strEventAlternate": "PSV Eindhoven @ Excelsior",
- "strFilename": "Dutch Eredivisie 2026-08-15 Excelsior vs PSV Eindhoven",
+ "idEvent": "2268165",
+ "idAPIfootball": "1380879",
+ "strTimestamp": "2025-08-16T18:00:00",
+ "strEvent": "Heracles Almelo vs NEC Nijmegen",
+ "strEventAlternate": "NEC Nijmegen @ Heracles Almelo",
+ "strFilename": "Dutch Eredivisie 2025-08-16 Heracles Almelo vs NEC Nijmegen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Excelsior",
- "strAwayTeam": "PSV Eindhoven",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heracles Almelo",
+ "strAwayTeam": "NEC Nijmegen",
+ "intHomeScore": "1",
"intRound": "2",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-15",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-16",
+ "dateEventLocal": "2025-08-16",
"strTime": "18:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133757",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
- "idAwayTeam": "133768",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133766",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
+ "idAwayTeam": "133760",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15862",
- "strVenue": "Van Donge and De Roo Stadion",
+ "strResult": "",
+ "idVenue": "18584",
+ "strVenue": "Asito Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/y0hofe1659552705.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8gglva1750407032.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489079",
- "idAPIfootball": "1552130",
- "strTimestamp": "2026-08-15T19:00:00",
- "strEvent": "Fortuna Sittard vs Cambuur",
- "strEventAlternate": "Cambuur @ Fortuna Sittard",
- "strFilename": "Dutch Eredivisie 2026-08-15 Fortuna Sittard vs Cambuur",
+ "idEvent": "2268166",
+ "idAPIfootball": "1380880",
+ "strTimestamp": "2025-08-17T10:15:00",
+ "strEvent": "Go Ahead Eagles vs Ajax",
+ "strEventAlternate": "Ajax @ Go Ahead Eagles",
+ "strFilename": "Dutch Eredivisie 2025-08-17 Go Ahead Eagles vs Ajax",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Fortuna Sittard",
- "strAwayTeam": "Cambuur",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Go Ahead Eagles",
+ "strAwayTeam": "Ajax",
+ "intHomeScore": "2",
"intRound": "2",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-15",
- "dateEventLocal": null,
- "strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134264",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
- "idAwayTeam": "134303",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
+ "dateEvent": "2025-08-17",
+ "dateEventLocal": "2025-08-17",
+ "strTime": "10:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134304",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "idAwayTeam": "133772",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18441",
- "strVenue": "Fortuna Sittard Stadion",
+ "strResult": "",
+ "idVenue": "17966",
+ "strVenue": "De Adelaarshorst",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9v5u6p1769670692.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489080",
- "idAPIfootball": "1552131",
- "strTimestamp": "2026-08-16T10:15:00",
- "strEvent": "ADO Den Haag vs Groningen",
- "strEventAlternate": "Groningen @ ADO Den Haag",
- "strFilename": "Dutch Eredivisie 2026-08-16 ADO Den Haag vs Groningen",
+ "idEvent": "2268167",
+ "idAPIfootball": "1380881",
+ "strTimestamp": "2025-08-17T12:30:00",
+ "strEvent": "Sparta Rotterdam vs Utrecht",
+ "strEventAlternate": "Utrecht @ Sparta Rotterdam",
+ "strFilename": "Dutch Eredivisie 2025-08-17 Sparta Rotterdam vs Utrecht",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "ADO Den Haag",
- "strAwayTeam": "Groningen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Sparta Rotterdam",
+ "strAwayTeam": "Utrecht",
+ "intHomeScore": "2",
"intRound": "2",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-16",
- "dateEventLocal": null,
- "strTime": "10:15:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133769",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
- "idAwayTeam": "133762",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "dateEvent": "2025-08-17",
+ "dateEventLocal": "2025-08-17",
+ "strTime": "12:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133866",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "idAwayTeam": "133764",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15843",
- "strVenue": "Cars Jeans Stadion",
+ "strResult": "",
+ "idVenue": "18581",
+ "strVenue": "Spartastadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/gp7n2x1750407036.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489081",
- "idAPIfootball": "1552132",
- "strTimestamp": "2026-08-16T12:30:00",
- "strEvent": "Feyenoord vs Go Ahead Eagles",
- "strEventAlternate": "Go Ahead Eagles @ Feyenoord",
- "strFilename": "Dutch Eredivisie 2026-08-16 Feyenoord vs Go Ahead Eagles",
+ "idEvent": "2268168",
+ "idAPIfootball": "1380882",
+ "strTimestamp": "2025-08-17T12:30:00",
+ "strEvent": "Twente vs PSV Eindhoven",
+ "strEventAlternate": "PSV Eindhoven @ Twente",
+ "strFilename": "Dutch Eredivisie 2025-08-17 Twente vs PSV Eindhoven",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Feyenoord",
- "strAwayTeam": "Go Ahead Eagles",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Twente",
+ "strAwayTeam": "PSV Eindhoven",
+ "intHomeScore": "0",
"intRound": "2",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-16",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-17",
+ "dateEventLocal": "2025-08-17",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133758",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
- "idAwayTeam": "134304",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133774",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "idAwayTeam": "133768",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15855",
- "strVenue": "Stadion Feyenoord",
+ "strResult": "",
+ "idVenue": "15859",
+ "strVenue": "De Grolsch Veste",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/j361bj1770369895.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/t93p151750407039.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489082",
- "idAPIfootball": "1552133",
- "strTimestamp": "2026-08-16T12:30:00",
- "strEvent": "Twente vs PEC Zwolle",
- "strEventAlternate": "PEC Zwolle @ Twente",
- "strFilename": "Dutch Eredivisie 2026-08-16 Twente vs PEC Zwolle",
+ "idEvent": "2268169",
+ "idAPIfootball": "1380883",
+ "strTimestamp": "2025-08-17T14:45:00",
+ "strEvent": "FC Volendam vs AZ Alkmaar",
+ "strEventAlternate": "AZ Alkmaar @ FC Volendam",
+ "strFilename": "Dutch Eredivisie 2025-08-17 FC Volendam vs AZ Alkmaar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Twente",
- "strAwayTeam": "PEC Zwolle",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "FC Volendam",
+ "strAwayTeam": "AZ Alkmaar",
+ "intHomeScore": "2",
"intRound": "2",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-16",
- "dateEventLocal": null,
- "strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133774",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
- "idAwayTeam": "133936",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "dateEvent": "2025-08-17",
+ "dateEventLocal": "2025-08-17",
+ "strTime": "14:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133867",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
+ "idAwayTeam": "133767",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15859",
- "strVenue": "De Grolsch Veste",
+ "strResult": "",
+ "idVenue": "17969",
+ "strVenue": "Kras Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3fe4oc1770369680.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489083",
- "idAPIfootball": "1552134",
- "strTimestamp": "2026-08-16T14:45:00",
- "strEvent": "Ajax vs Heerenveen",
- "strEventAlternate": "Heerenveen @ Ajax",
- "strFilename": "Dutch Eredivisie 2026-08-16 Ajax vs Heerenveen",
+ "idEvent": "2268170",
+ "idAPIfootball": "1380884",
+ "strTimestamp": "2025-08-17T18:00:00",
+ "strEvent": "NAC Breda vs Fortuna Sittard",
+ "strEventAlternate": "Fortuna Sittard @ NAC Breda",
+ "strFilename": "Dutch Eredivisie 2025-08-17 NAC Breda vs Fortuna Sittard",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Ajax",
- "strAwayTeam": "Heerenveen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NAC Breda",
+ "strAwayTeam": "Fortuna Sittard",
+ "intHomeScore": "2",
"intRound": "2",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-16",
- "dateEventLocal": null,
- "strTime": "14:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133772",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
- "idAwayTeam": "133759",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "dateEvent": "2025-08-17",
+ "dateEventLocal": "2025-08-17",
+ "strTime": "18:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133773",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
+ "idAwayTeam": "134264",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21448",
- "strVenue": "Johan Cruijff ArenA",
+ "strResult": "",
+ "idVenue": "15866",
+ "strVenue": "Rat Verlegh Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/s14en21769670743.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6ze2ia1750407043.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489084",
- "idAPIfootball": "1552135",
- "strTimestamp": "2026-08-22T14:30:00",
- "strEvent": "Fortuna Sittard vs AZ Alkmaar",
- "strEventAlternate": "AZ Alkmaar @ Fortuna Sittard",
- "strFilename": "Dutch Eredivisie 2026-08-22 Fortuna Sittard vs AZ Alkmaar",
+ "idEvent": "2268171",
+ "idAPIfootball": "1380885",
+ "strTimestamp": "2025-08-23T14:30:00",
+ "strEvent": "Go Ahead Eagles vs Sparta Rotterdam",
+ "strEventAlternate": "Sparta Rotterdam @ Go Ahead Eagles",
+ "strFilename": "Dutch Eredivisie 2025-08-23 Go Ahead Eagles vs Sparta Rotterdam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Fortuna Sittard",
- "strAwayTeam": "AZ Alkmaar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Go Ahead Eagles",
+ "strAwayTeam": "Sparta Rotterdam",
+ "intHomeScore": "0",
"intRound": "3",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-22",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-23",
+ "dateEventLocal": "2025-08-23",
"strTime": "14:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134264",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
- "idAwayTeam": "133767",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "134304",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "idAwayTeam": "133866",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18441",
- "strVenue": "Fortuna Sittard Stadion",
+ "strResult": "",
+ "idVenue": "17966",
+ "strVenue": "De Adelaarshorst",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8kmqfc1770369851.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6e7inm1750407047.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489085",
- "idAPIfootball": "1552136",
- "strTimestamp": "2026-08-22T16:45:00",
- "strEvent": "NEC Nijmegen vs Excelsior",
- "strEventAlternate": "Excelsior @ NEC Nijmegen",
- "strFilename": "Dutch Eredivisie 2026-08-22 NEC Nijmegen vs Excelsior",
+ "idEvent": "2268172",
+ "idAPIfootball": "1380886",
+ "strTimestamp": "2025-08-23T16:45:00",
+ "strEvent": "PSV Eindhoven vs Groningen",
+ "strEventAlternate": "Groningen @ PSV Eindhoven",
+ "strFilename": "Dutch Eredivisie 2025-08-23 PSV Eindhoven vs Groningen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "NEC Nijmegen",
- "strAwayTeam": "Excelsior",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PSV Eindhoven",
+ "strAwayTeam": "Groningen",
+ "intHomeScore": "4",
"intRound": "3",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-22",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-23",
+ "dateEventLocal": "2025-08-23",
"strTime": "16:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133760",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
- "idAwayTeam": "133757",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133768",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "idAwayTeam": "133762",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17971",
- "strVenue": "Goffertstadion",
+ "strResult": "",
+ "idVenue": "15844",
+ "strVenue": "Philips Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/j1wwvz1770369673.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/a9sx7k1750407050.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489086",
- "idAPIfootball": "1552137",
- "strTimestamp": "2026-08-22T18:00:00",
- "strEvent": "Sparta Rotterdam vs Utrecht",
- "strEventAlternate": "Utrecht @ Sparta Rotterdam",
- "strFilename": "Dutch Eredivisie 2026-08-22 Sparta Rotterdam vs Utrecht",
+ "idEvent": "2268173",
+ "idAPIfootball": "1380887",
+ "strTimestamp": "2025-08-23T19:00:00",
+ "strEvent": "SC Telstar vs FC Volendam",
+ "strEventAlternate": "FC Volendam @ SC Telstar",
+ "strFilename": "Dutch Eredivisie 2025-08-23 SC Telstar vs FC Volendam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Sparta Rotterdam",
- "strAwayTeam": "Utrecht",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "SC Telstar",
+ "strAwayTeam": "FC Volendam",
+ "intHomeScore": "2",
"intRound": "3",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-22",
- "dateEventLocal": null,
- "strTime": "18:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133866",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
- "idAwayTeam": "133764",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "dateEvent": "2025-08-23",
+ "dateEventLocal": "2025-08-23",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "138004",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "idAwayTeam": "133867",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18581",
- "strVenue": "Spartastadion",
+ "strResult": "",
+ "idVenue": "17957",
+ "strVenue": "711 Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/aw65di1750407054.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489087",
- "idAPIfootball": "1552138",
- "strTimestamp": "2026-08-22T19:00:00",
- "strEvent": "Heerenveen vs PEC Zwolle",
- "strEventAlternate": "PEC Zwolle @ Heerenveen",
- "strFilename": "Dutch Eredivisie 2026-08-22 Heerenveen vs PEC Zwolle",
+ "idEvent": "2268175",
+ "idAPIfootball": "1380889",
+ "strTimestamp": "2025-08-24T10:15:00",
+ "strEvent": "Heerenveen vs Twente",
+ "strEventAlternate": "Twente @ Heerenveen",
+ "strFilename": "Dutch Eredivisie 2025-08-24 Heerenveen vs Twente",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Heerenveen",
- "strAwayTeam": "PEC Zwolle",
- "intHomeScore": null,
+ "strAwayTeam": "Twente",
+ "intHomeScore": "1",
"intRound": "3",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-22",
- "dateEventLocal": null,
- "strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2025-08-24",
+ "dateEventLocal": "2025-08-24",
+ "strTime": "10:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
"idHomeTeam": "133759",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
- "idAwayTeam": "133936",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "133774",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "15861",
"strVenue": "Abe Lenstra Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5zdmt11750407058.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489088",
- "idAPIfootball": "1552139",
- "strTimestamp": "2026-08-23T10:15:00",
- "strEvent": "Go Ahead Eagles vs ADO Den Haag",
- "strEventAlternate": "ADO Den Haag @ Go Ahead Eagles",
- "strFilename": "Dutch Eredivisie 2026-08-23 Go Ahead Eagles vs ADO Den Haag",
+ "idEvent": "2268176",
+ "idAPIfootball": "1380890",
+ "strTimestamp": "2025-08-24T12:30:00",
+ "strEvent": "NEC Nijmegen vs NAC Breda",
+ "strEventAlternate": "NAC Breda @ NEC Nijmegen",
+ "strFilename": "Dutch Eredivisie 2025-08-24 NEC Nijmegen vs NAC Breda",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Go Ahead Eagles",
- "strAwayTeam": "ADO Den Haag",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NEC Nijmegen",
+ "strAwayTeam": "NAC Breda",
+ "intHomeScore": "3",
"intRound": "3",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-23",
- "dateEventLocal": null,
- "strTime": "10:15:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134304",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
- "idAwayTeam": "133769",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "dateEvent": "2025-08-24",
+ "dateEventLocal": "2025-08-24",
+ "strTime": "12:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133760",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "idAwayTeam": "133773",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17966",
- "strVenue": "De Adelaarshorst",
+ "strResult": "",
+ "idVenue": "17971",
+ "strVenue": "Goffertstadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xv6q8l1770369705.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489089",
- "idAPIfootball": "1552140",
- "strTimestamp": "2026-08-23T12:30:00",
- "strEvent": "PSV Eindhoven vs Groningen",
- "strEventAlternate": "Groningen @ PSV Eindhoven",
- "strFilename": "Dutch Eredivisie 2026-08-23 PSV Eindhoven vs Groningen",
+ "idEvent": "2268177",
+ "idAPIfootball": "1380891",
+ "strTimestamp": "2025-08-24T12:30:00",
+ "strEvent": "Utrecht vs Excelsior",
+ "strEventAlternate": "Excelsior @ Utrecht",
+ "strFilename": "Dutch Eredivisie 2025-08-24 Utrecht vs Excelsior",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PSV Eindhoven",
- "strAwayTeam": "Groningen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Utrecht",
+ "strAwayTeam": "Excelsior",
+ "intHomeScore": "4",
"intRound": "3",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-23",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-24",
+ "dateEventLocal": "2025-08-24",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133768",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
- "idAwayTeam": "133762",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133764",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "idAwayTeam": "133757",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15844",
- "strVenue": "Philips Stadion",
+ "strResult": "",
+ "idVenue": "15864",
+ "strVenue": "Stadion Galgenwaard",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7pl2xr1750407062.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489090",
- "idAPIfootball": "1552141",
- "strTimestamp": "2026-08-23T14:45:00",
- "strEvent": "Cambuur vs Feyenoord",
- "strEventAlternate": "Feyenoord @ Cambuur",
- "strFilename": "Dutch Eredivisie 2026-08-23 Cambuur vs Feyenoord",
+ "idEvent": "2268178",
+ "idAPIfootball": "1380892",
+ "strTimestamp": "2025-08-24T14:45:00",
+ "strEvent": "Ajax vs Heracles Almelo",
+ "strEventAlternate": "Heracles Almelo @ Ajax",
+ "strFilename": "Dutch Eredivisie 2025-08-24 Ajax vs Heracles Almelo",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Cambuur",
- "strAwayTeam": "Feyenoord",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Ajax",
+ "strAwayTeam": "Heracles Almelo",
+ "intHomeScore": "2",
"intRound": "3",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-23",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-24",
+ "dateEventLocal": "2025-08-24",
"strTime": "14:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134303",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
- "idAwayTeam": "133758",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133772",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "idAwayTeam": "133766",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "34141",
- "strVenue": "Kooi Stadion",
+ "strResult": "",
+ "idVenue": "21448",
+ "strVenue": "Johan Cruijff ArenA",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/iz2ttc1769670695.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489109",
- "idAPIfootball": "1552142",
- "strTimestamp": "2026-09-09T16:45:00",
- "strEvent": "Twente vs Telstar",
- "strEventAlternate": "Telstar @ Twente",
- "strFilename": "Dutch Eredivisie 2026-09-09 Twente vs Telstar",
+ "idEvent": "2268197",
+ "idAPIfootball": "1380911",
+ "strTimestamp": "2025-09-17T18:00:00",
+ "strEvent": "Feyenoord vs Fortuna Sittard",
+ "strEventAlternate": "Fortuna Sittard @ Feyenoord",
+ "strFilename": "Dutch Eredivisie 2025-09-17 Feyenoord vs Fortuna Sittard",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Twente",
- "strAwayTeam": "Telstar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Feyenoord",
+ "strAwayTeam": "Fortuna Sittard",
+ "intHomeScore": "2",
"intRound": "3",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-09",
- "dateEventLocal": null,
- "strTime": "16:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133774",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
- "idAwayTeam": "138004",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "dateEvent": "2025-09-17",
+ "dateEventLocal": "2025-09-17",
+ "strTime": "18:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133758",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "idAwayTeam": "134264",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15859",
- "strVenue": "De Grolsch Veste",
+ "strResult": "",
+ "idVenue": "15855",
+ "strVenue": "Stadion Feyenoord",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9twmv31770369720.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489119",
- "idAPIfootball": "1552143",
- "strTimestamp": "2026-09-15T18:00:00",
- "strEvent": "Ajax vs Willem II",
- "strEventAlternate": "Willem II @ Ajax",
- "strFilename": "Dutch Eredivisie 2026-09-15 Ajax vs Willem II",
+ "idEvent": "2268174",
+ "idAPIfootball": "1380888",
+ "strTimestamp": "2025-09-24T18:00:00",
+ "strEvent": "AZ Alkmaar vs PEC Zwolle",
+ "strEventAlternate": "PEC Zwolle @ AZ Alkmaar",
+ "strFilename": "Dutch Eredivisie 2025-09-24 AZ Alkmaar vs PEC Zwolle",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Ajax",
- "strAwayTeam": "Willem II",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "AZ Alkmaar",
+ "strAwayTeam": "PEC Zwolle",
+ "intHomeScore": "2",
"intRound": "3",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-15",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-24",
+ "dateEventLocal": "2025-09-24",
"strTime": "18:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133772",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
- "idAwayTeam": "133827",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133767",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "idAwayTeam": "133936",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21448",
- "strVenue": "Johan Cruijff ArenA",
+ "strResult": "",
+ "idVenue": "15860",
+ "strVenue": "AFAS Stadion Alkmaar",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qvpe8y1625514257.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5ji4df1770369684.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489091",
- "idAPIfootball": "1552144",
- "strTimestamp": "2026-08-28T18:00:00",
- "strEvent": "Groningen vs Fortuna Sittard",
- "strEventAlternate": "Fortuna Sittard @ Groningen",
- "strFilename": "Dutch Eredivisie 2026-08-28 Groningen vs Fortuna Sittard",
+ "idEvent": "2268179",
+ "idAPIfootball": "1380893",
+ "strTimestamp": "2025-08-29T18:00:00",
+ "strEvent": "Groningen vs Heracles Almelo",
+ "strEventAlternate": "Heracles Almelo @ Groningen",
+ "strFilename": "Dutch Eredivisie 2025-08-29 Groningen vs Heracles Almelo",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Groningen",
- "strAwayTeam": "Fortuna Sittard",
- "intHomeScore": null,
+ "strAwayTeam": "Heracles Almelo",
+ "intHomeScore": "4",
"intRound": "4",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-28",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-29",
+ "dateEventLocal": "2025-08-29",
"strTime": "18:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
"idHomeTeam": "133762",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
- "idAwayTeam": "134264",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "idAwayTeam": "133766",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "21331",
"strVenue": "Euroborg",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/h6uiqc1750407069.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489092",
- "idAPIfootball": "1552145",
- "strTimestamp": "2026-08-29T14:30:00",
- "strEvent": "Excelsior vs Sparta Rotterdam",
- "strEventAlternate": "Sparta Rotterdam @ Excelsior",
- "strFilename": "Dutch Eredivisie 2026-08-29 Excelsior vs Sparta Rotterdam",
+ "idEvent": "2268180",
+ "idAPIfootball": "1380894",
+ "strTimestamp": "2025-08-30T14:30:00",
+ "strEvent": "FC Volendam vs Ajax",
+ "strEventAlternate": "Ajax @ FC Volendam",
+ "strFilename": "Dutch Eredivisie 2025-08-30 FC Volendam vs Ajax",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Excelsior",
- "strAwayTeam": "Sparta Rotterdam",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "FC Volendam",
+ "strAwayTeam": "Ajax",
+ "intHomeScore": "1",
"intRound": "4",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-29",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-30",
+ "dateEventLocal": "2025-08-30",
"strTime": "14:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133757",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
- "idAwayTeam": "133866",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133867",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
+ "idAwayTeam": "133772",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15862",
- "strVenue": "Van Donge and De Roo Stadion",
+ "strResult": "",
+ "idVenue": "17969",
+ "strVenue": "Kras Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/iuad751769670699.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489093",
- "idAPIfootball": "1552146",
- "strTimestamp": "2026-08-29T16:45:00",
- "strEvent": "AZ Alkmaar vs Go Ahead Eagles",
- "strEventAlternate": "Go Ahead Eagles @ AZ Alkmaar",
- "strFilename": "Dutch Eredivisie 2026-08-29 AZ Alkmaar vs Go Ahead Eagles",
+ "idEvent": "2268181",
+ "idAPIfootball": "1380895",
+ "strTimestamp": "2025-08-30T16:45:00",
+ "strEvent": "Heerenveen vs Go Ahead Eagles",
+ "strEventAlternate": "Go Ahead Eagles @ Heerenveen",
+ "strFilename": "Dutch Eredivisie 2025-08-30 Heerenveen vs Go Ahead Eagles",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "AZ Alkmaar",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heerenveen",
"strAwayTeam": "Go Ahead Eagles",
- "intHomeScore": null,
+ "intHomeScore": "2",
"intRound": "4",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-29",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-30",
+ "dateEventLocal": "2025-08-30",
"strTime": "16:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133767",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133759",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"idAwayTeam": "134304",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15860",
- "strVenue": "AFAS Stadion Alkmaar",
+ "strResult": "",
+ "idVenue": "15861",
+ "strVenue": "Abe Lenstra Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/w066051770369792.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xcbv121750407073.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489094",
- "idAPIfootball": "1552147",
- "strTimestamp": "2026-08-29T19:00:00",
- "strEvent": "PEC Zwolle vs NEC Nijmegen",
- "strEventAlternate": "NEC Nijmegen @ PEC Zwolle",
- "strFilename": "Dutch Eredivisie 2026-08-29 PEC Zwolle vs NEC Nijmegen",
+ "idEvent": "2268182",
+ "idAPIfootball": "1380896",
+ "strTimestamp": "2025-08-30T18:00:00",
+ "strEvent": "PSV Eindhoven vs SC Telstar",
+ "strEventAlternate": "SC Telstar @ PSV Eindhoven",
+ "strFilename": "Dutch Eredivisie 2025-08-30 PSV Eindhoven vs SC Telstar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PEC Zwolle",
- "strAwayTeam": "NEC Nijmegen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PSV Eindhoven",
+ "strAwayTeam": "SC Telstar",
+ "intHomeScore": "0",
"intRound": "4",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-29",
- "dateEventLocal": null,
- "strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133936",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
- "idAwayTeam": "133760",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "dateEvent": "2025-08-30",
+ "dateEventLocal": "2025-08-30",
+ "strTime": "18:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133768",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "idAwayTeam": "138004",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18579",
- "strVenue": "MAC³PARK Stadion",
+ "strResult": "",
+ "idVenue": "15844",
+ "strVenue": "Philips Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6dxlx81770369755.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6lntpm1750407076.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489095",
- "idAPIfootball": "1552148",
- "strTimestamp": "2026-08-30T10:15:00",
- "strEvent": "Utrecht vs PSV Eindhoven",
- "strEventAlternate": "PSV Eindhoven @ Utrecht",
- "strFilename": "Dutch Eredivisie 2026-08-30 Utrecht vs PSV Eindhoven",
+ "idEvent": "2268183",
+ "idAPIfootball": "1380897",
+ "strTimestamp": "2025-08-30T19:00:00",
+ "strEvent": "Excelsior vs Twente",
+ "strEventAlternate": "Twente @ Excelsior",
+ "strFilename": "Dutch Eredivisie 2025-08-30 Excelsior vs Twente",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Utrecht",
- "strAwayTeam": "PSV Eindhoven",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Excelsior",
+ "strAwayTeam": "Twente",
+ "intHomeScore": "1",
"intRound": "4",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-30",
- "dateEventLocal": null,
- "strTime": "10:15:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133764",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
- "idAwayTeam": "133768",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "dateEvent": "2025-08-30",
+ "dateEventLocal": "2025-08-30",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133757",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "idAwayTeam": "133774",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15864",
- "strVenue": "Stadion Galgenwaard",
+ "strResult": "",
+ "idVenue": "15862",
+ "strVenue": "Van Donge and De Roo Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/dsb9lu1750407080.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489096",
- "idAPIfootball": "1552150",
- "strTimestamp": "2026-08-30T12:30:00",
- "strEvent": "Willem II vs Heerenveen",
- "strEventAlternate": "Heerenveen @ Willem II",
- "strFilename": "Dutch Eredivisie 2026-08-30 Willem II vs Heerenveen",
+ "idEvent": "2268184",
+ "idAPIfootball": "1380898",
+ "strTimestamp": "2025-08-31T10:15:00",
+ "strEvent": "Fortuna Sittard vs NEC Nijmegen",
+ "strEventAlternate": "NEC Nijmegen @ Fortuna Sittard",
+ "strFilename": "Dutch Eredivisie 2025-08-31 Fortuna Sittard vs NEC Nijmegen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Willem II",
- "strAwayTeam": "Heerenveen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Fortuna Sittard",
+ "strAwayTeam": "NEC Nijmegen",
+ "intHomeScore": "3",
"intRound": "4",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-30",
- "dateEventLocal": null,
- "strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133827",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
- "idAwayTeam": "133759",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "dateEvent": "2025-08-31",
+ "dateEventLocal": "2025-08-31",
+ "strTime": "10:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134264",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "idAwayTeam": "133760",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15856",
- "strVenue": "Koning Willem II Stadion",
- "strCountry": "The Netherlands",
- "strCity": null,
+ "strResult": "",
+ "idVenue": "18441",
+ "strVenue": "Fortuna Sittard Stadion",
+ "strCountry": "The Netherlands",
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/y3x2z81770369709.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489097",
- "idAPIfootball": "1552149",
- "strTimestamp": "2026-08-30T12:30:00",
- "strEvent": "Feyenoord vs ADO Den Haag",
- "strEventAlternate": "ADO Den Haag @ Feyenoord",
- "strFilename": "Dutch Eredivisie 2026-08-30 Feyenoord vs ADO Den Haag",
+ "idEvent": "2268185",
+ "idAPIfootball": "1380899",
+ "strTimestamp": "2025-08-31T12:30:00",
+ "strEvent": "Sparta Rotterdam vs Feyenoord",
+ "strEventAlternate": "Feyenoord @ Sparta Rotterdam",
+ "strFilename": "Dutch Eredivisie 2025-08-31 Sparta Rotterdam vs Feyenoord",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Feyenoord",
- "strAwayTeam": "ADO Den Haag",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Sparta Rotterdam",
+ "strAwayTeam": "Feyenoord",
+ "intHomeScore": "0",
"intRound": "4",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-30",
- "dateEventLocal": null,
+ "dateEvent": "2025-08-31",
+ "dateEventLocal": "2025-08-31",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133758",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
- "idAwayTeam": "133769",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133866",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "idAwayTeam": "133758",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15855",
- "strVenue": "Stadion Feyenoord",
+ "strResult": "",
+ "idVenue": "18581",
+ "strVenue": "Spartastadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2m8i291601658760.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jv4wuf1750407084.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489098",
- "idAPIfootball": "1552151",
- "strTimestamp": "2026-08-30T14:45:00",
- "strEvent": "Telstar vs Ajax",
- "strEventAlternate": "Ajax @ Telstar",
- "strFilename": "Dutch Eredivisie 2026-08-30 Telstar vs Ajax",
+ "idEvent": "2268186",
+ "idAPIfootball": "1380900",
+ "strTimestamp": "2025-08-31T12:30:00",
+ "strEvent": "PEC Zwolle vs Utrecht",
+ "strEventAlternate": "Utrecht @ PEC Zwolle",
+ "strFilename": "Dutch Eredivisie 2025-08-31 PEC Zwolle vs Utrecht",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Telstar",
- "strAwayTeam": "Ajax",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PEC Zwolle",
+ "strAwayTeam": "Utrecht",
+ "intHomeScore": "0",
"intRound": "4",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-30",
- "dateEventLocal": null,
- "strTime": "14:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "138004",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
- "idAwayTeam": "133772",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "dateEvent": "2025-08-31",
+ "dateEventLocal": "2025-08-31",
+ "strTime": "12:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133936",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "133764",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17957",
- "strVenue": "711 Stadion",
+ "strResult": "",
+ "idVenue": "18579",
+ "strVenue": "MAC³PARK Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0505hv1750407088.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489099",
- "idAPIfootball": "1552152",
- "strTimestamp": "2026-08-30T18:00:00",
- "strEvent": "Cambuur vs Twente",
- "strEventAlternate": "Twente @ Cambuur",
- "strFilename": "Dutch Eredivisie 2026-08-30 Cambuur vs Twente",
+ "idEvent": "2268187",
+ "idAPIfootball": "1380901",
+ "strTimestamp": "2025-08-31T14:45:00",
+ "strEvent": "NAC Breda vs AZ Alkmaar",
+ "strEventAlternate": "AZ Alkmaar @ NAC Breda",
+ "strFilename": "Dutch Eredivisie 2025-08-31 NAC Breda vs AZ Alkmaar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Cambuur",
- "strAwayTeam": "Twente",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NAC Breda",
+ "strAwayTeam": "AZ Alkmaar",
+ "intHomeScore": "0",
"intRound": "4",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-08-30",
- "dateEventLocal": null,
- "strTime": "18:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134303",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
- "idAwayTeam": "133774",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "dateEvent": "2025-08-31",
+ "dateEventLocal": "2025-08-31",
+ "strTime": "14:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133773",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
+ "idAwayTeam": "133767",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "34141",
- "strVenue": "Kooi Stadion",
+ "strResult": "",
+ "idVenue": "15866",
+ "strVenue": "Rat Verlegh Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/e2gjlf1750407091.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489100",
- "idAPIfootball": "1552153",
- "strTimestamp": "2026-09-04T18:00:00",
- "strEvent": "Sparta Rotterdam vs PEC Zwolle",
- "strEventAlternate": "PEC Zwolle @ Sparta Rotterdam",
- "strFilename": "Dutch Eredivisie 2026-09-04 Sparta Rotterdam vs PEC Zwolle",
+ "idEvent": "2268188",
+ "idAPIfootball": "1380902",
+ "strTimestamp": "2025-09-13T14:30:00",
+ "strEvent": "Ajax vs PEC Zwolle",
+ "strEventAlternate": "PEC Zwolle @ Ajax",
+ "strFilename": "Dutch Eredivisie 2025-09-13 Ajax vs PEC Zwolle",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Sparta Rotterdam",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Ajax",
"strAwayTeam": "PEC Zwolle",
- "intHomeScore": null,
+ "intHomeScore": "3",
"intRound": "5",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-04",
- "dateEventLocal": null,
- "strTime": "18:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133866",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "dateEvent": "2025-09-13",
+ "dateEventLocal": "2025-09-13",
+ "strTime": "14:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133772",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
"idAwayTeam": "133936",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18581",
- "strVenue": "Spartastadion",
+ "strResult": "",
+ "idVenue": "21448",
+ "strVenue": "Johan Cruijff ArenA",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4k9hce1769670702.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489101",
- "idAPIfootball": "1552154",
- "strTimestamp": "2026-09-05T14:30:00",
- "strEvent": "NEC Nijmegen vs Feyenoord",
- "strEventAlternate": "Feyenoord @ NEC Nijmegen",
- "strFilename": "Dutch Eredivisie 2026-09-05 NEC Nijmegen vs Feyenoord",
+ "idEvent": "2268189",
+ "idAPIfootball": "1380903",
+ "strTimestamp": "2025-09-13T16:45:00",
+ "strEvent": "Go Ahead Eagles vs FC Volendam",
+ "strEventAlternate": "FC Volendam @ Go Ahead Eagles",
+ "strFilename": "Dutch Eredivisie 2025-09-13 Go Ahead Eagles vs FC Volendam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "NEC Nijmegen",
- "strAwayTeam": "Feyenoord",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Go Ahead Eagles",
+ "strAwayTeam": "FC Volendam",
+ "intHomeScore": "3",
"intRound": "5",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-05",
- "dateEventLocal": null,
- "strTime": "14:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133760",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
- "idAwayTeam": "133758",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "dateEvent": "2025-09-13",
+ "dateEventLocal": "2025-09-13",
+ "strTime": "16:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "134304",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "idAwayTeam": "133867",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17971",
- "strVenue": "Goffertstadion",
+ "strResult": "",
+ "idVenue": "17966",
+ "strVenue": "De Adelaarshorst",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6f7hdu1770369944.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xoljch1770369713.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489102",
- "idAPIfootball": "1552155",
- "strTimestamp": "2026-09-05T16:45:00",
- "strEvent": "Utrecht vs Go Ahead Eagles",
- "strEventAlternate": "Go Ahead Eagles @ Utrecht",
- "strFilename": "Dutch Eredivisie 2026-09-05 Utrecht vs Go Ahead Eagles",
+ "idEvent": "2268190",
+ "idAPIfootball": "1380904",
+ "strTimestamp": "2025-09-13T16:45:00",
+ "strEvent": "NEC Nijmegen vs PSV Eindhoven",
+ "strEventAlternate": "PSV Eindhoven @ NEC Nijmegen",
+ "strFilename": "Dutch Eredivisie 2025-09-13 NEC Nijmegen vs PSV Eindhoven",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Utrecht",
- "strAwayTeam": "Go Ahead Eagles",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NEC Nijmegen",
+ "strAwayTeam": "PSV Eindhoven",
+ "intHomeScore": "3",
"intRound": "5",
- "intAwayScore": null,
+ "intAwayScore": "5",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-05",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-13",
+ "dateEventLocal": "2025-09-13",
"strTime": "16:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133764",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
- "idAwayTeam": "134304",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133760",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "idAwayTeam": "133768",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15864",
- "strVenue": "Stadion Galgenwaard",
+ "strResult": "",
+ "idVenue": "17971",
+ "strVenue": "Goffertstadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/egs6401770369717.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489103",
- "idAPIfootball": "1552156",
- "strTimestamp": "2026-09-05T18:00:00",
- "strEvent": "Ajax vs PSV Eindhoven",
- "strEventAlternate": "PSV Eindhoven @ Ajax",
- "strFilename": "Dutch Eredivisie 2026-09-05 Ajax vs PSV Eindhoven",
+ "idEvent": "2268191",
+ "idAPIfootball": "1380905",
+ "strTimestamp": "2025-09-13T19:00:00",
+ "strEvent": "Feyenoord vs Heerenveen",
+ "strEventAlternate": "Heerenveen @ Feyenoord",
+ "strFilename": "Dutch Eredivisie 2025-09-13 Feyenoord vs Heerenveen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Ajax",
- "strAwayTeam": "PSV Eindhoven",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Feyenoord",
+ "strAwayTeam": "Heerenveen",
+ "intHomeScore": "1",
"intRound": "5",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-05",
- "dateEventLocal": null,
- "strTime": "18:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133772",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
- "idAwayTeam": "133768",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "dateEvent": "2025-09-13",
+ "dateEventLocal": "2025-09-13",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133758",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "idAwayTeam": "133759",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21448",
- "strVenue": "Johan Cruijff ArenA",
+ "strResult": "",
+ "idVenue": "15855",
+ "strVenue": "Stadion Feyenoord",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5f1d3p1769670856.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/cd4fkv1750407095.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489104",
- "idAPIfootball": "1552157",
- "strTimestamp": "2026-09-05T19:00:00",
- "strEvent": "Willem II vs Excelsior",
- "strEventAlternate": "Excelsior @ Willem II",
- "strFilename": "Dutch Eredivisie 2026-09-05 Willem II vs Excelsior",
+ "idEvent": "2268192",
+ "idAPIfootball": "1380906",
+ "strTimestamp": "2025-09-13T19:00:00",
+ "strEvent": "Twente vs NAC Breda",
+ "strEventAlternate": "NAC Breda @ Twente",
+ "strFilename": "Dutch Eredivisie 2025-09-13 Twente vs NAC Breda",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Willem II",
- "strAwayTeam": "Excelsior",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Twente",
+ "strAwayTeam": "NAC Breda",
+ "intHomeScore": "2",
"intRound": "5",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-05",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-13",
+ "dateEventLocal": "2025-09-13",
"strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133827",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
- "idAwayTeam": "133757",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133774",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "idAwayTeam": "133773",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15856",
- "strVenue": "Koning Willem II Stadion",
+ "strResult": "",
+ "idVenue": "15859",
+ "strVenue": "De Grolsch Veste",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2q7gi91750407099.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489105",
- "idAPIfootball": "1552158",
- "strTimestamp": "2026-09-06T10:15:00",
- "strEvent": "Groningen vs Twente",
- "strEventAlternate": "Twente @ Groningen",
- "strFilename": "Dutch Eredivisie 2026-09-06 Groningen vs Twente",
+ "idEvent": "2268193",
+ "idAPIfootball": "1380907",
+ "strTimestamp": "2025-09-14T10:15:00",
+ "strEvent": "Excelsior vs Sparta Rotterdam",
+ "strEventAlternate": "Sparta Rotterdam @ Excelsior",
+ "strFilename": "Dutch Eredivisie 2025-09-14 Excelsior vs Sparta Rotterdam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Groningen",
- "strAwayTeam": "Twente",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Excelsior",
+ "strAwayTeam": "Sparta Rotterdam",
+ "intHomeScore": "0",
"intRound": "5",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-06",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-14",
+ "dateEventLocal": "2025-09-14",
"strTime": "10:15:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133762",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
- "idAwayTeam": "133774",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133757",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "idAwayTeam": "133866",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21331",
- "strVenue": "Euroborg",
+ "strResult": "",
+ "idVenue": "15862",
+ "strVenue": "Van Donge and De Roo Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5oaupk1750407103.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489106",
- "idAPIfootball": "1552159",
- "strTimestamp": "2026-09-06T12:30:00",
- "strEvent": "Heerenveen vs AZ Alkmaar",
- "strEventAlternate": "AZ Alkmaar @ Heerenveen",
- "strFilename": "Dutch Eredivisie 2026-09-06 Heerenveen vs AZ Alkmaar",
+ "idEvent": "2268194",
+ "idAPIfootball": "1380908",
+ "strTimestamp": "2025-09-14T12:30:00",
+ "strEvent": "Heracles Almelo vs AZ Alkmaar",
+ "strEventAlternate": "AZ Alkmaar @ Heracles Almelo",
+ "strFilename": "Dutch Eredivisie 2025-09-14 Heracles Almelo vs AZ Alkmaar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Heerenveen",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heracles Almelo",
"strAwayTeam": "AZ Alkmaar",
- "intHomeScore": null,
+ "intHomeScore": "1",
"intRound": "5",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-06",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-14",
+ "dateEventLocal": "2025-09-14",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133759",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133766",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"idAwayTeam": "133767",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15861",
- "strVenue": "Abe Lenstra Stadion",
+ "strResult": "",
+ "idVenue": "18584",
+ "strVenue": "Asito Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xcmy7l1750407107.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489107",
- "idAPIfootball": "1552160",
- "strTimestamp": "2026-09-06T12:30:00",
- "strEvent": "Telstar vs Cambuur",
- "strEventAlternate": "Cambuur @ Telstar",
- "strFilename": "Dutch Eredivisie 2026-09-06 Telstar vs Cambuur",
+ "idEvent": "2268195",
+ "idAPIfootball": "1380909",
+ "strTimestamp": "2025-09-14T12:30:00",
+ "strEvent": "Utrecht vs Groningen",
+ "strEventAlternate": "Groningen @ Utrecht",
+ "strFilename": "Dutch Eredivisie 2025-09-14 Utrecht vs Groningen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Telstar",
- "strAwayTeam": "Cambuur",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Utrecht",
+ "strAwayTeam": "Groningen",
+ "intHomeScore": "0",
"intRound": "5",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-06",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-14",
+ "dateEventLocal": "2025-09-14",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "138004",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
- "idAwayTeam": "134303",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133764",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "idAwayTeam": "133762",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17957",
- "strVenue": "711 Stadion",
+ "strResult": "",
+ "idVenue": "15864",
+ "strVenue": "Stadion Galgenwaard",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kodpom1750407110.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489108",
- "idAPIfootball": "1552161",
- "strTimestamp": "2026-09-06T14:45:00",
- "strEvent": "ADO Den Haag vs Fortuna Sittard",
- "strEventAlternate": "Fortuna Sittard @ ADO Den Haag",
- "strFilename": "Dutch Eredivisie 2026-09-06 ADO Den Haag vs Fortuna Sittard",
+ "idEvent": "2268196",
+ "idAPIfootball": "1380910",
+ "strTimestamp": "2025-09-14T14:45:00",
+ "strEvent": "SC Telstar vs Fortuna Sittard",
+ "strEventAlternate": "Fortuna Sittard @ SC Telstar",
+ "strFilename": "Dutch Eredivisie 2025-09-14 SC Telstar vs Fortuna Sittard",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "ADO Den Haag",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "SC Telstar",
"strAwayTeam": "Fortuna Sittard",
- "intHomeScore": null,
+ "intHomeScore": "1",
"intRound": "5",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-06",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-14",
+ "dateEventLocal": "2025-09-14",
"strTime": "14:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133769",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "138004",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
"idAwayTeam": "134264",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15843",
- "strVenue": "Cars Jeans Stadion",
+ "strResult": "",
+ "idVenue": "17957",
+ "strVenue": "711 Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zpbk5r1601658934.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qdxqw21750407114.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489110",
- "idAPIfootball": "1552162",
- "strTimestamp": "2026-09-11T18:00:00",
- "strEvent": "AZ Alkmaar vs Willem II",
- "strEventAlternate": "Willem II @ AZ Alkmaar",
- "strFilename": "Dutch Eredivisie 2026-09-11 AZ Alkmaar vs Willem II",
+ "idEvent": "2268198",
+ "idAPIfootball": "1380912",
+ "strTimestamp": "2025-09-19T18:00:00",
+ "strEvent": "Sparta Rotterdam vs Twente",
+ "strEventAlternate": "Twente @ Sparta Rotterdam",
+ "strFilename": "Dutch Eredivisie 2025-09-19 Sparta Rotterdam vs Twente",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "AZ Alkmaar",
- "strAwayTeam": "Willem II",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Sparta Rotterdam",
+ "strAwayTeam": "Twente",
+ "intHomeScore": "1",
"intRound": "6",
- "intAwayScore": null,
+ "intAwayScore": "5",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-11",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-19",
+ "dateEventLocal": "2025-09-19",
"strTime": "18:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133767",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
- "idAwayTeam": "133827",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133866",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "idAwayTeam": "133774",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15860",
- "strVenue": "AFAS Stadion Alkmaar",
+ "strResult": "",
+ "idVenue": "18581",
+ "strVenue": "Spartastadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pahj221625514266.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ihljq11750407118.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489111",
- "idAPIfootball": "1552163",
- "strTimestamp": "2026-09-12T14:30:00",
- "strEvent": "Twente vs ADO Den Haag",
- "strEventAlternate": "ADO Den Haag @ Twente",
- "strFilename": "Dutch Eredivisie 2026-09-12 Twente vs ADO Den Haag",
+ "idEvent": "2268199",
+ "idAPIfootball": "1380913",
+ "strTimestamp": "2025-09-20T14:30:00",
+ "strEvent": "FC Volendam vs Excelsior",
+ "strEventAlternate": "Excelsior @ FC Volendam",
+ "strFilename": "Dutch Eredivisie 2025-09-20 FC Volendam vs Excelsior",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Twente",
- "strAwayTeam": "ADO Den Haag",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "FC Volendam",
+ "strAwayTeam": "Excelsior",
+ "intHomeScore": "1",
"intRound": "6",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-12",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-20",
+ "dateEventLocal": "2025-09-20",
"strTime": "14:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133774",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
- "idAwayTeam": "133769",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133867",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
+ "idAwayTeam": "133757",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15859",
- "strVenue": "De Grolsch Veste",
+ "strResult": "",
+ "idVenue": "17969",
+ "strVenue": "Kras Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/x2tipi1770369724.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489112",
- "idAPIfootball": "1552164",
- "strTimestamp": "2026-09-12T16:45:00",
- "strEvent": "Go Ahead Eagles vs Groningen",
- "strEventAlternate": "Groningen @ Go Ahead Eagles",
- "strFilename": "Dutch Eredivisie 2026-09-12 Go Ahead Eagles vs Groningen",
+ "idEvent": "2268200",
+ "idAPIfootball": "1380914",
+ "strTimestamp": "2025-09-20T16:45:00",
+ "strEvent": "Groningen vs SC Telstar",
+ "strEventAlternate": "SC Telstar @ Groningen",
+ "strFilename": "Dutch Eredivisie 2025-09-20 Groningen vs SC Telstar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Go Ahead Eagles",
- "strAwayTeam": "Groningen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Groningen",
+ "strAwayTeam": "SC Telstar",
+ "intHomeScore": "2",
"intRound": "6",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-12",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-20",
+ "dateEventLocal": "2025-09-20",
"strTime": "16:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134304",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
- "idAwayTeam": "133762",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133762",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "idAwayTeam": "138004",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17966",
- "strVenue": "De Adelaarshorst",
+ "strResult": "",
+ "idVenue": "21331",
+ "strVenue": "Euroborg",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/enluyl1750407122.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489113",
- "idAPIfootball": "1552165",
- "strTimestamp": "2026-09-12T18:00:00",
- "strEvent": "Fortuna Sittard vs Ajax",
- "strEventAlternate": "Ajax @ Fortuna Sittard",
- "strFilename": "Dutch Eredivisie 2026-09-12 Fortuna Sittard vs Ajax",
+ "idEvent": "2268201",
+ "idAPIfootball": "1380915",
+ "strTimestamp": "2025-09-20T18:00:00",
+ "strEvent": "Fortuna Sittard vs Utrecht",
+ "strEventAlternate": "Utrecht @ Fortuna Sittard",
+ "strFilename": "Dutch Eredivisie 2025-09-20 Fortuna Sittard vs Utrecht",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Fortuna Sittard",
- "strAwayTeam": "Ajax",
- "intHomeScore": null,
+ "strAwayTeam": "Utrecht",
+ "intHomeScore": "1",
"intRound": "6",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-12",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-20",
+ "dateEventLocal": "2025-09-20",
"strTime": "18:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
"idHomeTeam": "134264",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
- "idAwayTeam": "133772",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "idAwayTeam": "133764",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "18441",
"strVenue": "Fortuna Sittard Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qnkh9b1769670775.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zkhloo1750407125.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489114",
- "idAPIfootball": "1552166",
- "strTimestamp": "2026-09-12T19:00:00",
- "strEvent": "Heerenveen vs Telstar",
- "strEventAlternate": "Telstar @ Heerenveen",
- "strFilename": "Dutch Eredivisie 2026-09-12 Heerenveen vs Telstar",
+ "idEvent": "2268202",
+ "idAPIfootball": "1380916",
+ "strTimestamp": "2025-09-20T19:00:00",
+ "strEvent": "NAC Breda vs Heracles Almelo",
+ "strEventAlternate": "Heracles Almelo @ NAC Breda",
+ "strFilename": "Dutch Eredivisie 2025-09-20 NAC Breda vs Heracles Almelo",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Heerenveen",
- "strAwayTeam": "Telstar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NAC Breda",
+ "strAwayTeam": "Heracles Almelo",
+ "intHomeScore": "2",
"intRound": "6",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-12",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-20",
+ "dateEventLocal": "2025-09-20",
"strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133759",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
- "idAwayTeam": "138004",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133773",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
+ "idAwayTeam": "133766",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15861",
- "strVenue": "Abe Lenstra Stadion",
+ "strResult": "",
+ "idVenue": "15866",
+ "strVenue": "Rat Verlegh Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hnd5fi1750407129.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489115",
- "idAPIfootball": "1552167",
- "strTimestamp": "2026-09-13T10:15:00",
- "strEvent": "Excelsior vs Utrecht",
- "strEventAlternate": "Utrecht @ Excelsior",
- "strFilename": "Dutch Eredivisie 2026-09-13 Excelsior vs Utrecht",
+ "idEvent": "2268203",
+ "idAPIfootball": "1380917",
+ "strTimestamp": "2025-09-21T10:15:00",
+ "strEvent": "PEC Zwolle vs Go Ahead Eagles",
+ "strEventAlternate": "Go Ahead Eagles @ PEC Zwolle",
+ "strFilename": "Dutch Eredivisie 2025-09-21 PEC Zwolle vs Go Ahead Eagles",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Excelsior",
- "strAwayTeam": "Utrecht",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PEC Zwolle",
+ "strAwayTeam": "Go Ahead Eagles",
+ "intHomeScore": "0",
"intRound": "6",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-13",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-21",
+ "dateEventLocal": "2025-09-21",
"strTime": "10:15:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133757",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
- "idAwayTeam": "133764",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133936",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "134304",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15862",
- "strVenue": "Van Donge and De Roo Stadion",
+ "strResult": "",
+ "idVenue": "18579",
+ "strVenue": "MAC³PARK Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3thajq1770369729.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489116",
- "idAPIfootball": "1552169",
- "strTimestamp": "2026-09-13T12:30:00",
- "strEvent": "PSV Eindhoven vs Sparta Rotterdam",
- "strEventAlternate": "Sparta Rotterdam @ PSV Eindhoven",
- "strFilename": "Dutch Eredivisie 2026-09-13 PSV Eindhoven vs Sparta Rotterdam",
+ "idEvent": "2268204",
+ "idAPIfootball": "1380918",
+ "strTimestamp": "2025-09-21T12:30:00",
+ "strEvent": "Heerenveen vs NEC Nijmegen",
+ "strEventAlternate": "NEC Nijmegen @ Heerenveen",
+ "strFilename": "Dutch Eredivisie 2025-09-21 Heerenveen vs NEC Nijmegen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PSV Eindhoven",
- "strAwayTeam": "Sparta Rotterdam",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heerenveen",
+ "strAwayTeam": "NEC Nijmegen",
+ "intHomeScore": "3",
"intRound": "6",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-13",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-21",
+ "dateEventLocal": "2025-09-21",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133768",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
- "idAwayTeam": "133866",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133759",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "idAwayTeam": "133760",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15844",
- "strVenue": "Philips Stadion",
+ "strResult": "",
+ "idVenue": "15861",
+ "strVenue": "Abe Lenstra Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/u3pnoz1750407133.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489117",
- "idAPIfootball": "1552168",
- "strTimestamp": "2026-09-13T12:30:00",
- "strEvent": "Cambuur vs NEC Nijmegen",
- "strEventAlternate": "NEC Nijmegen @ Cambuur",
- "strFilename": "Dutch Eredivisie 2026-09-13 Cambuur vs NEC Nijmegen",
+ "idEvent": "2268205",
+ "idAPIfootball": "1380919",
+ "strTimestamp": "2025-09-21T12:30:00",
+ "strEvent": "PSV Eindhoven vs Ajax",
+ "strEventAlternate": "Ajax @ PSV Eindhoven",
+ "strFilename": "Dutch Eredivisie 2025-09-21 PSV Eindhoven vs Ajax",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Cambuur",
- "strAwayTeam": "NEC Nijmegen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PSV Eindhoven",
+ "strAwayTeam": "Ajax",
+ "intHomeScore": "2",
"intRound": "6",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-13",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-21",
+ "dateEventLocal": "2025-09-21",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134303",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
- "idAwayTeam": "133760",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133768",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "idAwayTeam": "133772",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "34141",
- "strVenue": "Kooi Stadion",
+ "strResult": "",
+ "idVenue": "15844",
+ "strVenue": "Philips Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/f126hg1769670706.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "https://www.youtube.com/watch?v=lqpqxkNYowo",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489118",
- "idAPIfootball": "1552170",
- "strTimestamp": "2026-09-13T14:45:00",
- "strEvent": "PEC Zwolle vs Feyenoord",
- "strEventAlternate": "Feyenoord @ PEC Zwolle",
- "strFilename": "Dutch Eredivisie 2026-09-13 PEC Zwolle vs Feyenoord",
+ "idEvent": "2268206",
+ "idAPIfootball": "1380920",
+ "strTimestamp": "2025-09-21T14:45:00",
+ "strEvent": "AZ Alkmaar vs Feyenoord",
+ "strEventAlternate": "Feyenoord @ AZ Alkmaar",
+ "strFilename": "Dutch Eredivisie 2025-09-21 AZ Alkmaar vs Feyenoord",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PEC Zwolle",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "AZ Alkmaar",
"strAwayTeam": "Feyenoord",
- "intHomeScore": null,
+ "intHomeScore": "3",
"intRound": "6",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-13",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-21",
+ "dateEventLocal": "2025-09-21",
"strTime": "14:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133936",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133767",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
"idAwayTeam": "133758",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18579",
- "strVenue": "MAC³PARK Stadion",
+ "strResult": "",
+ "idVenue": "15860",
+ "strVenue": "AFAS Stadion Alkmaar",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/el1fma1770370032.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ht2usw1770369732.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489120",
- "idAPIfootball": "1552171",
- "strTimestamp": "2026-09-18T18:00:00",
- "strEvent": "Sparta Rotterdam vs Heerenveen",
- "strEventAlternate": "Heerenveen @ Sparta Rotterdam",
- "strFilename": "Dutch Eredivisie 2026-09-18 Sparta Rotterdam vs Heerenveen",
+ "idEvent": "2268207",
+ "idAPIfootball": "1380921",
+ "strTimestamp": "2025-09-26T18:00:00",
+ "strEvent": "Twente vs Fortuna Sittard",
+ "strEventAlternate": "Fortuna Sittard @ Twente",
+ "strFilename": "Dutch Eredivisie 2025-09-26 Twente vs Fortuna Sittard",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Sparta Rotterdam",
- "strAwayTeam": "Heerenveen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Twente",
+ "strAwayTeam": "Fortuna Sittard",
+ "intHomeScore": "3",
"intRound": "7",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-18",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-26",
+ "dateEventLocal": "2025-09-26",
"strTime": "18:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133866",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
- "idAwayTeam": "133759",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133774",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "idAwayTeam": "134264",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18581",
- "strVenue": "Spartastadion",
+ "strResult": "",
+ "idVenue": "15859",
+ "strVenue": "De Grolsch Veste",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/gyn28k1750407136.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489121",
- "idAPIfootball": "1552172",
- "strTimestamp": "2026-09-19T14:30:00",
- "strEvent": "ADO Den Haag vs Cambuur",
- "strEventAlternate": "Cambuur @ ADO Den Haag",
- "strFilename": "Dutch Eredivisie 2026-09-19 ADO Den Haag vs Cambuur",
+ "idEvent": "2268209",
+ "idAPIfootball": "1380923",
+ "strTimestamp": "2025-09-27T14:30:00",
+ "strEvent": "Ajax vs NAC Breda",
+ "strEventAlternate": "NAC Breda @ Ajax",
+ "strFilename": "Dutch Eredivisie 2025-09-27 Ajax vs NAC Breda",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "ADO Den Haag",
- "strAwayTeam": "Cambuur",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Ajax",
+ "strAwayTeam": "NAC Breda",
+ "intHomeScore": "2",
"intRound": "7",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-19",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-27",
+ "dateEventLocal": "2025-09-27",
"strTime": "14:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133769",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
- "idAwayTeam": "134303",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133772",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "idAwayTeam": "133773",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15843",
- "strVenue": "Cars Jeans Stadion",
+ "strResult": "",
+ "idVenue": "21448",
+ "strVenue": "Johan Cruijff ArenA",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/47w3731769670710.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489122",
- "idAPIfootball": "1552173",
- "strTimestamp": "2026-09-19T16:45:00",
- "strEvent": "Groningen vs PEC Zwolle",
- "strEventAlternate": "PEC Zwolle @ Groningen",
- "strFilename": "Dutch Eredivisie 2026-09-19 Groningen vs PEC Zwolle",
+ "idEvent": "2268210",
+ "idAPIfootball": "1380924",
+ "strTimestamp": "2025-09-27T16:45:00",
+ "strEvent": "FC Volendam vs PEC Zwolle",
+ "strEventAlternate": "PEC Zwolle @ FC Volendam",
+ "strFilename": "Dutch Eredivisie 2025-09-27 FC Volendam vs PEC Zwolle",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Groningen",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "FC Volendam",
"strAwayTeam": "PEC Zwolle",
- "intHomeScore": null,
+ "intHomeScore": "2",
"intRound": "7",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-19",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-27",
+ "dateEventLocal": "2025-09-27",
"strTime": "16:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133762",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133867",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
"idAwayTeam": "133936",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21331",
- "strVenue": "Euroborg",
+ "strResult": "",
+ "idVenue": "17969",
+ "strVenue": "Kras Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yhje401750407147.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489123",
- "idAPIfootball": "1552174",
- "strTimestamp": "2026-09-19T18:00:00",
- "strEvent": "Ajax vs Excelsior",
- "strEventAlternate": "Excelsior @ Ajax",
- "strFilename": "Dutch Eredivisie 2026-09-19 Ajax vs Excelsior",
+ "idEvent": "2268211",
+ "idAPIfootball": "1380925",
+ "strTimestamp": "2025-09-27T18:00:00",
+ "strEvent": "Excelsior vs PSV Eindhoven",
+ "strEventAlternate": "PSV Eindhoven @ Excelsior",
+ "strFilename": "Dutch Eredivisie 2025-09-27 Excelsior vs PSV Eindhoven",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Ajax",
- "strAwayTeam": "Excelsior",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Excelsior",
+ "strAwayTeam": "PSV Eindhoven",
+ "intHomeScore": "1",
"intRound": "7",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-19",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-27",
+ "dateEventLocal": "2025-09-27",
"strTime": "18:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133772",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
- "idAwayTeam": "133757",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133757",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "idAwayTeam": "133768",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21448",
- "strVenue": "Johan Cruijff ArenA",
+ "strResult": "",
+ "idVenue": "15862",
+ "strVenue": "Van Donge and De Roo Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ar4zrx1769670750.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/y0hofe1659552705.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489124",
- "idAPIfootball": "1552175",
- "strTimestamp": "2026-09-19T19:00:00",
- "strEvent": "Willem II vs Fortuna Sittard",
- "strEventAlternate": "Fortuna Sittard @ Willem II",
- "strFilename": "Dutch Eredivisie 2026-09-19 Willem II vs Fortuna Sittard",
+ "idEvent": "2268213",
+ "idAPIfootball": "1380927",
+ "strTimestamp": "2025-09-27T19:00:00",
+ "strEvent": "Heracles Almelo vs Sparta Rotterdam",
+ "strEventAlternate": "Sparta Rotterdam @ Heracles Almelo",
+ "strFilename": "Dutch Eredivisie 2025-09-27 Heracles Almelo vs Sparta Rotterdam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Willem II",
- "strAwayTeam": "Fortuna Sittard",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heracles Almelo",
+ "strAwayTeam": "Sparta Rotterdam",
+ "intHomeScore": "3",
"intRound": "7",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-19",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-27",
+ "dateEventLocal": "2025-09-27",
"strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133827",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
- "idAwayTeam": "134264",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133766",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
+ "idAwayTeam": "133866",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15856",
- "strVenue": "Koning Willem II Stadion",
+ "strResult": "",
+ "idVenue": "18584",
+ "strVenue": "Asito Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fe8f591625514230.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5ku38j1750407151.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489125",
- "idAPIfootball": "1552176",
- "strTimestamp": "2026-09-20T10:15:00",
- "strEvent": "Feyenoord vs Utrecht",
- "strEventAlternate": "Utrecht @ Feyenoord",
- "strFilename": "Dutch Eredivisie 2026-09-20 Feyenoord vs Utrecht",
+ "idEvent": "2268208",
+ "idAPIfootball": "1380922",
+ "strTimestamp": "2025-09-28T12:30:00",
+ "strEvent": "Groningen vs Feyenoord",
+ "strEventAlternate": "Feyenoord @ Groningen",
+ "strFilename": "Dutch Eredivisie 2025-09-28 Groningen vs Feyenoord",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Feyenoord",
- "strAwayTeam": "Utrecht",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Groningen",
+ "strAwayTeam": "Feyenoord",
+ "intHomeScore": "0",
"intRound": "7",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-20",
- "dateEventLocal": null,
- "strTime": "10:15:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133758",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
- "idAwayTeam": "133764",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "dateEvent": "2025-09-28",
+ "dateEventLocal": "2025-09-28",
+ "strTime": "12:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133762",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "idAwayTeam": "133758",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15855",
- "strVenue": "Stadion Feyenoord",
+ "strResult": "",
+ "idVenue": "21331",
+ "strVenue": "Euroborg",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vm9hgt1750407140.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489126",
- "idAPIfootball": "1552177",
- "strTimestamp": "2026-09-20T12:30:00",
- "strEvent": "AZ Alkmaar vs Telstar",
- "strEventAlternate": "Telstar @ AZ Alkmaar",
- "strFilename": "Dutch Eredivisie 2026-09-20 AZ Alkmaar vs Telstar",
+ "idEvent": "2268212",
+ "idAPIfootball": "1380926",
+ "strTimestamp": "2025-09-28T10:15:00",
+ "strEvent": "NEC Nijmegen vs AZ Alkmaar",
+ "strEventAlternate": "AZ Alkmaar @ NEC Nijmegen",
+ "strFilename": "Dutch Eredivisie 2025-09-28 NEC Nijmegen vs AZ Alkmaar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "AZ Alkmaar",
- "strAwayTeam": "Telstar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NEC Nijmegen",
+ "strAwayTeam": "AZ Alkmaar",
+ "intHomeScore": "2",
"intRound": "7",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-20",
- "dateEventLocal": null,
- "strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133767",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
- "idAwayTeam": "138004",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "dateEvent": "2025-09-28",
+ "dateEventLocal": "2025-09-28",
+ "strTime": "10:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133760",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "idAwayTeam": "133767",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15860",
- "strVenue": "AFAS Stadion Alkmaar",
+ "strResult": "",
+ "idVenue": "17971",
+ "strVenue": "Goffertstadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mo5sxu1770369736.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489127",
- "idAPIfootball": "1552178",
- "strTimestamp": "2026-09-20T12:30:00",
- "strEvent": "NEC Nijmegen vs Go Ahead Eagles",
- "strEventAlternate": "Go Ahead Eagles @ NEC Nijmegen",
- "strFilename": "Dutch Eredivisie 2026-09-20 NEC Nijmegen vs Go Ahead Eagles",
+ "idEvent": "2268214",
+ "idAPIfootball": "1380928",
+ "strTimestamp": "2025-09-28T12:30:00",
+ "strEvent": "Utrecht vs Heerenveen",
+ "strEventAlternate": "Heerenveen @ Utrecht",
+ "strFilename": "Dutch Eredivisie 2025-09-28 Utrecht vs Heerenveen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "NEC Nijmegen",
- "strAwayTeam": "Go Ahead Eagles",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Utrecht",
+ "strAwayTeam": "Heerenveen",
+ "intHomeScore": "2",
"intRound": "7",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-20",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-28",
+ "dateEventLocal": "2025-09-28",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133760",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
- "idAwayTeam": "134304",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133764",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "idAwayTeam": "133759",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17971",
- "strVenue": "Goffertstadion",
+ "strResult": "",
+ "idVenue": "15864",
+ "strVenue": "Stadion Galgenwaard",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8o364v1770370006.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8xv1hz1750407155.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489128",
- "idAPIfootball": "1552179",
- "strTimestamp": "2026-09-20T14:45:00",
- "strEvent": "Twente vs PSV Eindhoven",
- "strEventAlternate": "PSV Eindhoven @ Twente",
- "strFilename": "Dutch Eredivisie 2026-09-20 Twente vs PSV Eindhoven",
+ "idEvent": "2268215",
+ "idAPIfootball": "1380929",
+ "strTimestamp": "2025-09-28T14:45:00",
+ "strEvent": "SC Telstar vs Go Ahead Eagles",
+ "strEventAlternate": "Go Ahead Eagles @ SC Telstar",
+ "strFilename": "Dutch Eredivisie 2025-09-28 SC Telstar vs Go Ahead Eagles",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Twente",
- "strAwayTeam": "PSV Eindhoven",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "SC Telstar",
+ "strAwayTeam": "Go Ahead Eagles",
+ "intHomeScore": "4",
"intRound": "7",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-09-20",
- "dateEventLocal": null,
+ "dateEvent": "2025-09-28",
+ "dateEventLocal": "2025-09-28",
"strTime": "14:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133774",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
- "idAwayTeam": "133768",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "138004",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "idAwayTeam": "134304",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15859",
- "strVenue": "De Grolsch Veste",
+ "strResult": "",
+ "idVenue": "17957",
+ "strVenue": "711 Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/k9e3wz1750407158.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489129",
- "idAPIfootball": "1552180",
- "strTimestamp": "2026-10-10T14:30:00",
- "strEvent": "PSV Eindhoven vs Heerenveen",
- "strEventAlternate": "Heerenveen @ PSV Eindhoven",
- "strFilename": "Dutch Eredivisie 2026-10-10 PSV Eindhoven vs Heerenveen",
+ "idEvent": "2268216",
+ "idAPIfootball": "1380930",
+ "strTimestamp": "2025-10-03T18:00:00",
+ "strEvent": "NAC Breda vs Groningen",
+ "strEventAlternate": "Groningen @ NAC Breda",
+ "strFilename": "Dutch Eredivisie 2025-10-03 NAC Breda vs Groningen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PSV Eindhoven",
- "strAwayTeam": "Heerenveen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NAC Breda",
+ "strAwayTeam": "Groningen",
+ "intHomeScore": "1",
"intRound": "8",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-10",
- "dateEventLocal": null,
- "strTime": "14:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133768",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
- "idAwayTeam": "133759",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "dateEvent": "2025-10-03",
+ "dateEventLocal": "2025-10-03",
+ "strTime": "18:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133773",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
+ "idAwayTeam": "133762",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15844",
- "strVenue": "Philips Stadion",
+ "strResult": "",
+ "idVenue": "15866",
+ "strVenue": "Rat Verlegh Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fletys1750407162.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489130",
- "idAPIfootball": "1552181",
- "strTimestamp": "2026-10-10T16:45:00",
- "strEvent": "Feyenoord vs AZ Alkmaar",
- "strEventAlternate": "AZ Alkmaar @ Feyenoord",
- "strFilename": "Dutch Eredivisie 2026-10-10 Feyenoord vs AZ Alkmaar",
+ "idEvent": "2268217",
+ "idAPIfootball": "1380931",
+ "strTimestamp": "2025-10-04T14:30:00",
+ "strEvent": "Sparta Rotterdam vs Ajax",
+ "strEventAlternate": "Ajax @ Sparta Rotterdam",
+ "strFilename": "Dutch Eredivisie 2025-10-04 Sparta Rotterdam vs Ajax",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Feyenoord",
- "strAwayTeam": "AZ Alkmaar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Sparta Rotterdam",
+ "strAwayTeam": "Ajax",
+ "intHomeScore": "3",
"intRound": "8",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-10",
- "dateEventLocal": null,
- "strTime": "16:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133758",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
- "idAwayTeam": "133767",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "dateEvent": "2025-10-04",
+ "dateEventLocal": "2025-10-04",
+ "strTime": "14:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133866",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "idAwayTeam": "133772",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15855",
- "strVenue": "Stadion Feyenoord",
+ "strResult": "",
+ "idVenue": "18581",
+ "strVenue": "Spartastadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ks9clg1770369990.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/whbufm1769670714.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489131",
- "idAPIfootball": "1552182",
- "strTimestamp": "2026-10-10T16:45:00",
- "strEvent": "Go Ahead Eagles vs Sparta Rotterdam",
- "strEventAlternate": "Sparta Rotterdam @ Go Ahead Eagles",
- "strFilename": "Dutch Eredivisie 2026-10-10 Go Ahead Eagles vs Sparta Rotterdam",
+ "idEvent": "2268218",
+ "idAPIfootball": "1380932",
+ "strTimestamp": "2025-10-04T16:45:00",
+ "strEvent": "Fortuna Sittard vs FC Volendam",
+ "strEventAlternate": "FC Volendam @ Fortuna Sittard",
+ "strFilename": "Dutch Eredivisie 2025-10-04 Fortuna Sittard vs FC Volendam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Go Ahead Eagles",
- "strAwayTeam": "Sparta Rotterdam",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Fortuna Sittard",
+ "strAwayTeam": "FC Volendam",
+ "intHomeScore": "1",
"intRound": "8",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-10",
- "dateEventLocal": null,
+ "dateEvent": "2025-10-04",
+ "dateEventLocal": "2025-10-04",
"strTime": "16:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134304",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
- "idAwayTeam": "133866",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "134264",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "idAwayTeam": "133867",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17966",
- "strVenue": "De Adelaarshorst",
+ "strResult": "",
+ "idVenue": "18441",
+ "strVenue": "Fortuna Sittard Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6c32fy1770369740.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489132",
- "idAPIfootball": "1552183",
- "strTimestamp": "2026-10-10T19:00:00",
- "strEvent": "Ajax vs NEC Nijmegen",
- "strEventAlternate": "NEC Nijmegen @ Ajax",
- "strFilename": "Dutch Eredivisie 2026-10-10 Ajax vs NEC Nijmegen",
+ "idEvent": "2268219",
+ "idAPIfootball": "1380933",
+ "strTimestamp": "2025-10-04T18:00:00",
+ "strEvent": "PEC Zwolle vs PSV Eindhoven",
+ "strEventAlternate": "PSV Eindhoven @ PEC Zwolle",
+ "strFilename": "Dutch Eredivisie 2025-10-04 PEC Zwolle vs PSV Eindhoven",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Ajax",
- "strAwayTeam": "NEC Nijmegen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PEC Zwolle",
+ "strAwayTeam": "PSV Eindhoven",
+ "intHomeScore": "0",
"intRound": "8",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-10",
- "dateEventLocal": null,
- "strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133772",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
- "idAwayTeam": "133760",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "dateEvent": "2025-10-04",
+ "dateEventLocal": "2025-10-04",
+ "strTime": "18:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133936",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "133768",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21448",
- "strVenue": "Johan Cruijff ArenA",
+ "strResult": "",
+ "idVenue": "18579",
+ "strVenue": "MAC³PARK Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qjmcdj1769670809.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pspck71625514354.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489133",
- "idAPIfootball": "1552184",
- "strTimestamp": "2026-10-10T19:00:00",
- "strEvent": "Fortuna Sittard vs Twente",
- "strEventAlternate": "Twente @ Fortuna Sittard",
- "strFilename": "Dutch Eredivisie 2026-10-10 Fortuna Sittard vs Twente",
+ "idEvent": "2268220",
+ "idAPIfootball": "1380934",
+ "strTimestamp": "2025-10-04T19:00:00",
+ "strEvent": "Heerenveen vs Excelsior",
+ "strEventAlternate": "Excelsior @ Heerenveen",
+ "strFilename": "Dutch Eredivisie 2025-10-04 Heerenveen vs Excelsior",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Fortuna Sittard",
- "strAwayTeam": "Twente",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heerenveen",
+ "strAwayTeam": "Excelsior",
+ "intHomeScore": "2",
"intRound": "8",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-10",
- "dateEventLocal": null,
+ "dateEvent": "2025-10-04",
+ "dateEventLocal": "2025-10-04",
"strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134264",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
- "idAwayTeam": "133774",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133759",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "idAwayTeam": "133757",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18441",
- "strVenue": "Fortuna Sittard Stadion",
+ "strResult": "",
+ "idVenue": "15861",
+ "strVenue": "Abe Lenstra Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/glivtl1750407169.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489134",
- "idAPIfootball": "1552185",
- "strTimestamp": "2026-10-11T10:15:00",
- "strEvent": "Utrecht vs Willem II",
- "strEventAlternate": "Willem II @ Utrecht",
- "strFilename": "Dutch Eredivisie 2026-10-11 Utrecht vs Willem II",
+ "idEvent": "2268221",
+ "idAPIfootball": "1380935",
+ "strTimestamp": "2025-10-05T10:15:00",
+ "strEvent": "Twente vs Heracles Almelo",
+ "strEventAlternate": "Heracles Almelo @ Twente",
+ "strFilename": "Dutch Eredivisie 2025-10-05 Twente vs Heracles Almelo",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Utrecht",
- "strAwayTeam": "Willem II",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Twente",
+ "strAwayTeam": "Heracles Almelo",
+ "intHomeScore": "2",
"intRound": "8",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-11",
- "dateEventLocal": null,
+ "dateEvent": "2025-10-05",
+ "dateEventLocal": "2025-10-05",
"strTime": "10:15:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133764",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
- "idAwayTeam": "133827",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133774",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "idAwayTeam": "133766",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15864",
- "strVenue": "Stadion Galgenwaard",
+ "strResult": "",
+ "idVenue": "15859",
+ "strVenue": "De Grolsch Veste",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vw4e5p1750407173.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489135",
- "idAPIfootball": "1552187",
- "strTimestamp": "2026-10-11T12:30:00",
- "strEvent": "PEC Zwolle vs Cambuur",
- "strEventAlternate": "Cambuur @ PEC Zwolle",
- "strFilename": "Dutch Eredivisie 2026-10-11 PEC Zwolle vs Cambuur",
+ "idEvent": "2268222",
+ "idAPIfootball": "1380936",
+ "strTimestamp": "2025-10-05T14:45:00",
+ "strEvent": "AZ Alkmaar vs SC Telstar",
+ "strEventAlternate": "SC Telstar @ AZ Alkmaar",
+ "strFilename": "Dutch Eredivisie 2025-10-05 AZ Alkmaar vs SC Telstar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PEC Zwolle",
- "strAwayTeam": "Cambuur",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "AZ Alkmaar",
+ "strAwayTeam": "SC Telstar",
+ "intHomeScore": "2",
"intRound": "8",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-11",
- "dateEventLocal": null,
- "strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133936",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
- "idAwayTeam": "134303",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
+ "dateEvent": "2025-10-05",
+ "dateEventLocal": "2025-10-05",
+ "strTime": "14:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133767",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "idAwayTeam": "138004",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18579",
- "strVenue": "MAC³PARK Stadion",
+ "strResult": "",
+ "idVenue": "15860",
+ "strVenue": "AFAS Stadion Alkmaar",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xy9q5b1750407177.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489136",
- "idAPIfootball": "1552186",
- "strTimestamp": "2026-10-11T12:30:00",
- "strEvent": "Telstar vs ADO Den Haag",
- "strEventAlternate": "ADO Den Haag @ Telstar",
- "strFilename": "Dutch Eredivisie 2026-10-11 Telstar vs ADO Den Haag",
+ "idEvent": "2268223",
+ "idAPIfootball": "1380937",
+ "strTimestamp": "2025-10-05T12:30:00",
+ "strEvent": "Feyenoord vs Utrecht",
+ "strEventAlternate": "Utrecht @ Feyenoord",
+ "strFilename": "Dutch Eredivisie 2025-10-05 Feyenoord vs Utrecht",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Telstar",
- "strAwayTeam": "ADO Den Haag",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Feyenoord",
+ "strAwayTeam": "Utrecht",
+ "intHomeScore": "3",
"intRound": "8",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-11",
- "dateEventLocal": null,
+ "dateEvent": "2025-10-05",
+ "dateEventLocal": "2025-10-05",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "138004",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
- "idAwayTeam": "133769",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133758",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "idAwayTeam": "133764",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17957",
- "strVenue": "711 Stadion",
+ "strResult": "",
+ "idVenue": "15855",
+ "strVenue": "Stadion Feyenoord",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yeanir1750407180.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489137",
- "idAPIfootball": "1552188",
- "strTimestamp": "2026-10-11T14:45:00",
- "strEvent": "Excelsior vs Groningen",
- "strEventAlternate": "Groningen @ Excelsior",
- "strFilename": "Dutch Eredivisie 2026-10-11 Excelsior vs Groningen",
+ "idEvent": "2268224",
+ "idAPIfootball": "1380938",
+ "strTimestamp": "2025-10-05T18:00:00",
+ "strEvent": "Go Ahead Eagles vs NEC Nijmegen",
+ "strEventAlternate": "NEC Nijmegen @ Go Ahead Eagles",
+ "strFilename": "Dutch Eredivisie 2025-10-05 Go Ahead Eagles vs NEC Nijmegen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Excelsior",
- "strAwayTeam": "Groningen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Go Ahead Eagles",
+ "strAwayTeam": "NEC Nijmegen",
+ "intHomeScore": "1",
"intRound": "8",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-11",
- "dateEventLocal": null,
- "strTime": "14:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133757",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
- "idAwayTeam": "133762",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "dateEvent": "2025-10-05",
+ "dateEventLocal": "2025-10-05",
+ "strTime": "18:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134304",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "idAwayTeam": "133760",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15862",
- "strVenue": "Van Donge and De Roo Stadion",
+ "strResult": "",
+ "idVenue": "17966",
+ "strVenue": "De Adelaarshorst",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mopjr01770369744.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489138",
- "idAPIfootball": "1552189",
- "strTimestamp": "2026-10-16T18:00:00",
- "strEvent": "Heerenveen vs Excelsior",
- "strEventAlternate": "Excelsior @ Heerenveen",
- "strFilename": "Dutch Eredivisie 2026-10-16 Heerenveen vs Excelsior",
+ "idEvent": "2268226",
+ "idAPIfootball": "1380940",
+ "strTimestamp": "2025-10-18T16:45:00",
+ "strEvent": "PSV Eindhoven vs Go Ahead Eagles",
+ "strEventAlternate": "Go Ahead Eagles @ PSV Eindhoven",
+ "strFilename": "Dutch Eredivisie 2025-10-18 PSV Eindhoven vs Go Ahead Eagles",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Heerenveen",
- "strAwayTeam": "Excelsior",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PSV Eindhoven",
+ "strAwayTeam": "Go Ahead Eagles",
+ "intHomeScore": "2",
"intRound": "9",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-16",
- "dateEventLocal": null,
- "strTime": "18:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133759",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
- "idAwayTeam": "133757",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "dateEvent": "2025-10-18",
+ "dateEventLocal": "2025-10-18",
+ "strTime": "16:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133768",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "idAwayTeam": "134304",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15861",
- "strVenue": "Abe Lenstra Stadion",
+ "strResult": "",
+ "idVenue": "15844",
+ "strVenue": "Philips Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/tvlrxe1770369747.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489139",
- "idAPIfootball": "1552190",
- "strTimestamp": "2026-10-17T14:30:00",
- "strEvent": "ADO Den Haag vs PSV Eindhoven",
- "strEventAlternate": "PSV Eindhoven @ ADO Den Haag",
- "strFilename": "Dutch Eredivisie 2026-10-17 ADO Den Haag vs PSV Eindhoven",
+ "idEvent": "2268227",
+ "idAPIfootball": "1380941",
+ "strTimestamp": "2025-10-18T16:45:00",
+ "strEvent": "Utrecht vs FC Volendam",
+ "strEventAlternate": "FC Volendam @ Utrecht",
+ "strFilename": "Dutch Eredivisie 2025-10-18 Utrecht vs FC Volendam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "ADO Den Haag",
- "strAwayTeam": "PSV Eindhoven",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Utrecht",
+ "strAwayTeam": "FC Volendam",
+ "intHomeScore": "3",
"intRound": "9",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-17",
- "dateEventLocal": null,
- "strTime": "14:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133769",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
- "idAwayTeam": "133768",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "dateEvent": "2025-10-18",
+ "dateEventLocal": "2025-10-18",
+ "strTime": "16:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133764",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "idAwayTeam": "133867",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15843",
- "strVenue": "Cars Jeans Stadion",
+ "strResult": "",
+ "idVenue": "15864",
+ "strVenue": "Stadion Galgenwaard",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ze4jp61601658881.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8r92gm1750407188.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489140",
- "idAPIfootball": "1552191",
- "strTimestamp": "2026-10-17T16:45:00",
- "strEvent": "NEC Nijmegen vs Fortuna Sittard",
- "strEventAlternate": "Fortuna Sittard @ NEC Nijmegen",
- "strFilename": "Dutch Eredivisie 2026-10-17 NEC Nijmegen vs Fortuna Sittard",
+ "idEvent": "2268228",
+ "idAPIfootball": "1380942",
+ "strTimestamp": "2025-10-18T19:00:00",
+ "strEvent": "Ajax vs AZ Alkmaar",
+ "strEventAlternate": "AZ Alkmaar @ Ajax",
+ "strFilename": "Dutch Eredivisie 2025-10-18 Ajax vs AZ Alkmaar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "NEC Nijmegen",
- "strAwayTeam": "Fortuna Sittard",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Ajax",
+ "strAwayTeam": "AZ Alkmaar",
+ "intHomeScore": "0",
"intRound": "9",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-17",
- "dateEventLocal": null,
- "strTime": "16:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133760",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
- "idAwayTeam": "134264",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "dateEvent": "2025-10-18",
+ "dateEventLocal": "2025-10-18",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133772",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "idAwayTeam": "133767",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17971",
- "strVenue": "Goffertstadion",
+ "strResult": "",
+ "idVenue": "21448",
+ "strVenue": "Johan Cruijff ArenA",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/lgmlxq1770369907.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4ilb501769670717.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489141",
- "idAPIfootball": "1552192",
- "strTimestamp": "2026-10-17T18:00:00",
- "strEvent": "Telstar vs Feyenoord",
- "strEventAlternate": "Feyenoord @ Telstar",
- "strFilename": "Dutch Eredivisie 2026-10-17 Telstar vs Feyenoord",
+ "idEvent": "2268229",
+ "idAPIfootball": "1380943",
+ "strTimestamp": "2025-10-18T19:00:00",
+ "strEvent": "NAC Breda vs PEC Zwolle",
+ "strEventAlternate": "PEC Zwolle @ NAC Breda",
+ "strFilename": "Dutch Eredivisie 2025-10-18 NAC Breda vs PEC Zwolle",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Telstar",
- "strAwayTeam": "Feyenoord",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NAC Breda",
+ "strAwayTeam": "PEC Zwolle",
+ "intHomeScore": "2",
"intRound": "9",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-17",
- "dateEventLocal": null,
- "strTime": "18:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "138004",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
- "idAwayTeam": "133758",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "dateEvent": "2025-10-18",
+ "dateEventLocal": "2025-10-18",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133773",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
+ "idAwayTeam": "133936",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17957",
- "strVenue": "711 Stadion",
+ "strResult": "",
+ "idVenue": "15866",
+ "strVenue": "Rat Verlegh Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7n00gz1750407192.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489142",
- "idAPIfootball": "1552193",
- "strTimestamp": "2026-10-17T19:00:00",
- "strEvent": "Sparta Rotterdam vs Willem II",
- "strEventAlternate": "Willem II @ Sparta Rotterdam",
- "strFilename": "Dutch Eredivisie 2026-10-17 Sparta Rotterdam vs Willem II",
+ "idEvent": "2268233",
+ "idAPIfootball": "1380947",
+ "strTimestamp": "2025-10-18T14:30:00",
+ "strEvent": "NEC Nijmegen vs Twente",
+ "strEventAlternate": "Twente @ NEC Nijmegen",
+ "strFilename": "Dutch Eredivisie 2025-10-18 NEC Nijmegen vs Twente",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Sparta Rotterdam",
- "strAwayTeam": "Willem II",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NEC Nijmegen",
+ "strAwayTeam": "Twente",
+ "intHomeScore": "3",
"intRound": "9",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-17",
- "dateEventLocal": null,
- "strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133866",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
- "idAwayTeam": "133827",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
+ "dateEvent": "2025-10-18",
+ "dateEventLocal": "2025-10-18",
+ "strTime": "14:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133760",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "idAwayTeam": "133774",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18581",
- "strVenue": "Spartastadion",
+ "strResult": "",
+ "idVenue": "17971",
+ "strVenue": "Goffertstadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/msmgi21750407203.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489143",
- "idAPIfootball": "1552194",
- "strTimestamp": "2026-10-18T10:15:00",
- "strEvent": "PEC Zwolle vs Go Ahead Eagles",
- "strEventAlternate": "Go Ahead Eagles @ PEC Zwolle",
- "strFilename": "Dutch Eredivisie 2026-10-18 PEC Zwolle vs Go Ahead Eagles",
+ "idEvent": "2268225",
+ "idAPIfootball": "1380939",
+ "strTimestamp": "2025-10-19T14:45:00",
+ "strEvent": "Heracles Almelo vs Feyenoord",
+ "strEventAlternate": "Feyenoord @ Heracles Almelo",
+ "strFilename": "Dutch Eredivisie 2025-10-19 Heracles Almelo vs Feyenoord",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PEC Zwolle",
- "strAwayTeam": "Go Ahead Eagles",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heracles Almelo",
+ "strAwayTeam": "Feyenoord",
+ "intHomeScore": "0",
"intRound": "9",
- "intAwayScore": null,
+ "intAwayScore": "7",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-18",
- "dateEventLocal": null,
- "strTime": "10:15:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133936",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
- "idAwayTeam": "134304",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "dateEvent": "2025-10-19",
+ "dateEventLocal": "2025-10-19",
+ "strTime": "14:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133766",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
+ "idAwayTeam": "133758",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18579",
- "strVenue": "MAC³PARK Stadion",
+ "strResult": "",
+ "idVenue": "18584",
+ "strVenue": "Asito Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3thajq1770369729.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qjyu1k1750407184.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489144",
- "idAPIfootball": "1552196",
- "strTimestamp": "2026-10-18T12:30:00",
- "strEvent": "Twente vs Utrecht",
- "strEventAlternate": "Utrecht @ Twente",
- "strFilename": "Dutch Eredivisie 2026-10-18 Twente vs Utrecht",
+ "idEvent": "2268230",
+ "idAPIfootball": "1380944",
+ "strTimestamp": "2025-10-19T12:30:00",
+ "strEvent": "Groningen vs Sparta Rotterdam",
+ "strEventAlternate": "Sparta Rotterdam @ Groningen",
+ "strFilename": "Dutch Eredivisie 2025-10-19 Groningen vs Sparta Rotterdam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Twente",
- "strAwayTeam": "Utrecht",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Groningen",
+ "strAwayTeam": "Sparta Rotterdam",
+ "intHomeScore": "0",
"intRound": "9",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-18",
- "dateEventLocal": null,
+ "dateEvent": "2025-10-19",
+ "dateEventLocal": "2025-10-19",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133774",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
- "idAwayTeam": "133764",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133762",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "idAwayTeam": "133866",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15859",
- "strVenue": "De Grolsch Veste",
+ "strResult": "",
+ "idVenue": "21331",
+ "strVenue": "Euroborg",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/895jd41750407195.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489145",
- "idAPIfootball": "1552195",
- "strTimestamp": "2026-10-18T12:30:00",
- "strEvent": "Cambuur vs AZ Alkmaar",
- "strEventAlternate": "AZ Alkmaar @ Cambuur",
- "strFilename": "Dutch Eredivisie 2026-10-18 Cambuur vs AZ Alkmaar",
+ "idEvent": "2268231",
+ "idAPIfootball": "1380945",
+ "strTimestamp": "2025-10-19T12:30:00",
+ "strEvent": "Excelsior vs Fortuna Sittard",
+ "strEventAlternate": "Fortuna Sittard @ Excelsior",
+ "strFilename": "Dutch Eredivisie 2025-10-19 Excelsior vs Fortuna Sittard",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Cambuur",
- "strAwayTeam": "AZ Alkmaar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Excelsior",
+ "strAwayTeam": "Fortuna Sittard",
+ "intHomeScore": "1",
"intRound": "9",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-18",
- "dateEventLocal": null,
+ "dateEvent": "2025-10-19",
+ "dateEventLocal": "2025-10-19",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134303",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
- "idAwayTeam": "133767",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133757",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "idAwayTeam": "134264",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "34141",
- "strVenue": "Kooi Stadion",
+ "strResult": "",
+ "idVenue": "15862",
+ "strVenue": "Van Donge and De Roo Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/gdynav1770369751.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489146",
- "idAPIfootball": "1552197",
- "strTimestamp": "2026-10-18T14:45:00",
- "strEvent": "Groningen vs Ajax",
- "strEventAlternate": "Ajax @ Groningen",
- "strFilename": "Dutch Eredivisie 2026-10-18 Groningen vs Ajax",
+ "idEvent": "2268232",
+ "idAPIfootball": "1380946",
+ "strTimestamp": "2025-10-19T10:15:00",
+ "strEvent": "SC Telstar vs Heerenveen",
+ "strEventAlternate": "Heerenveen @ SC Telstar",
+ "strFilename": "Dutch Eredivisie 2025-10-19 SC Telstar vs Heerenveen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Groningen",
- "strAwayTeam": "Ajax",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "SC Telstar",
+ "strAwayTeam": "Heerenveen",
+ "intHomeScore": "2",
"intRound": "9",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-18",
- "dateEventLocal": null,
- "strTime": "14:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133762",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
- "idAwayTeam": "133772",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "dateEvent": "2025-10-19",
+ "dateEventLocal": "2025-10-19",
+ "strTime": "10:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "138004",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "idAwayTeam": "133759",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21331",
- "strVenue": "Euroborg",
+ "strResult": "",
+ "idVenue": "17957",
+ "strVenue": "711 Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6ad26u1769670816.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mpyle21750407199.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489147",
- "idAPIfootball": "1552198",
- "strTimestamp": "2026-10-23T18:00:00",
- "strEvent": "Go Ahead Eagles vs Telstar",
- "strEventAlternate": "Telstar @ Go Ahead Eagles",
- "strFilename": "Dutch Eredivisie 2026-10-23 Go Ahead Eagles vs Telstar",
+ "idEvent": "2268234",
+ "idAPIfootball": "1380948",
+ "strTimestamp": "2025-10-24T18:00:00",
+ "strEvent": "Heerenveen vs NAC Breda",
+ "strEventAlternate": "NAC Breda @ Heerenveen",
+ "strFilename": "Dutch Eredivisie 2025-10-24 Heerenveen vs NAC Breda",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Go Ahead Eagles",
- "strAwayTeam": "Telstar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heerenveen",
+ "strAwayTeam": "NAC Breda",
+ "intHomeScore": "3",
"intRound": "10",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-23",
- "dateEventLocal": null,
+ "dateEvent": "2025-10-24",
+ "dateEventLocal": "2025-10-24",
"strTime": "18:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134304",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
- "idAwayTeam": "138004",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133759",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "idAwayTeam": "133773",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17966",
- "strVenue": "De Adelaarshorst",
+ "strResult": "",
+ "idVenue": "15861",
+ "strVenue": "Abe Lenstra Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hejo8e1750407208.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489148",
- "idAPIfootball": "1552199",
- "strTimestamp": "2026-10-24T14:30:00",
- "strEvent": "Utrecht vs PEC Zwolle",
- "strEventAlternate": "PEC Zwolle @ Utrecht",
- "strFilename": "Dutch Eredivisie 2026-10-24 Utrecht vs PEC Zwolle",
+ "idEvent": "2268235",
+ "idAPIfootball": "1380949",
+ "strTimestamp": "2025-10-25T14:30:00",
+ "strEvent": "Fortuna Sittard vs Groningen",
+ "strEventAlternate": "Groningen @ Fortuna Sittard",
+ "strFilename": "Dutch Eredivisie 2025-10-25 Fortuna Sittard vs Groningen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Utrecht",
- "strAwayTeam": "PEC Zwolle",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Fortuna Sittard",
+ "strAwayTeam": "Groningen",
+ "intHomeScore": "1",
"intRound": "10",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-24",
- "dateEventLocal": null,
+ "dateEvent": "2025-10-25",
+ "dateEventLocal": "2025-10-25",
"strTime": "14:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133764",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
- "idAwayTeam": "133936",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "134264",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "idAwayTeam": "133762",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15864",
- "strVenue": "Stadion Galgenwaard",
+ "strResult": "",
+ "idVenue": "18441",
+ "strVenue": "Fortuna Sittard Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kezro01750407211.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489149",
- "idAPIfootball": "1552200",
- "strTimestamp": "2026-10-24T16:45:00",
- "strEvent": "Willem II vs Cambuur",
- "strEventAlternate": "Cambuur @ Willem II",
- "strFilename": "Dutch Eredivisie 2026-10-24 Willem II vs Cambuur",
+ "idEvent": "2268236",
+ "idAPIfootball": "1380950",
+ "strTimestamp": "2025-10-25T18:00:00",
+ "strEvent": "FC Volendam vs Heracles Almelo",
+ "strEventAlternate": "Heracles Almelo @ FC Volendam",
+ "strFilename": "Dutch Eredivisie 2025-10-25 FC Volendam vs Heracles Almelo",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Willem II",
- "strAwayTeam": "Cambuur",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "FC Volendam",
+ "strAwayTeam": "Heracles Almelo",
+ "intHomeScore": "3",
"intRound": "10",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-24",
- "dateEventLocal": null,
- "strTime": "16:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133827",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
- "idAwayTeam": "134303",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
+ "dateEvent": "2025-10-25",
+ "dateEventLocal": "2025-10-25",
+ "strTime": "18:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133867",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
+ "idAwayTeam": "133766",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15856",
- "strVenue": "Koning Willem II Stadion",
+ "strResult": "",
+ "idVenue": "17969",
+ "strVenue": "Kras Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2r1alz1750407215.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489150",
- "idAPIfootball": "1552201",
- "strTimestamp": "2026-10-24T19:00:00",
- "strEvent": "ADO Den Haag vs Heerenveen",
- "strEventAlternate": "Heerenveen @ ADO Den Haag",
- "strFilename": "Dutch Eredivisie 2026-10-24 ADO Den Haag vs Heerenveen",
+ "idEvent": "2268237",
+ "idAPIfootball": "1380951",
+ "strTimestamp": "2025-10-25T16:45:00",
+ "strEvent": "Sparta Rotterdam vs SC Telstar",
+ "strEventAlternate": "SC Telstar @ Sparta Rotterdam",
+ "strFilename": "Dutch Eredivisie 2025-10-25 Sparta Rotterdam vs SC Telstar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "ADO Den Haag",
- "strAwayTeam": "Heerenveen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Sparta Rotterdam",
+ "strAwayTeam": "SC Telstar",
+ "intHomeScore": "1",
"intRound": "10",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-24",
- "dateEventLocal": null,
- "strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133769",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
- "idAwayTeam": "133759",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "dateEvent": "2025-10-25",
+ "dateEventLocal": "2025-10-25",
+ "strTime": "16:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133866",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "idAwayTeam": "138004",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15843",
- "strVenue": "Cars Jeans Stadion",
+ "strResult": "",
+ "idVenue": "18581",
+ "strVenue": "Spartastadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/n6y7281750407219.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489151",
- "idAPIfootball": "1552202",
- "strTimestamp": "2026-10-25T11:15:00",
- "strEvent": "Fortuna Sittard vs Excelsior",
- "strEventAlternate": "Excelsior @ Fortuna Sittard",
- "strFilename": "Dutch Eredivisie 2026-10-25 Fortuna Sittard vs Excelsior",
+ "idEvent": "2268238",
+ "idAPIfootball": "1380952",
+ "strTimestamp": "2025-10-25T19:00:00",
+ "strEvent": "PEC Zwolle vs NEC Nijmegen",
+ "strEventAlternate": "NEC Nijmegen @ PEC Zwolle",
+ "strFilename": "Dutch Eredivisie 2025-10-25 PEC Zwolle vs NEC Nijmegen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Fortuna Sittard",
- "strAwayTeam": "Excelsior",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PEC Zwolle",
+ "strAwayTeam": "NEC Nijmegen",
+ "intHomeScore": "2",
"intRound": "10",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-25",
- "dateEventLocal": null,
- "strTime": "11:15:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134264",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
- "idAwayTeam": "133757",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "dateEvent": "2025-10-25",
+ "dateEventLocal": "2025-10-25",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133936",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "133760",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18441",
- "strVenue": "Fortuna Sittard Stadion",
+ "strResult": "",
+ "idVenue": "18579",
+ "strVenue": "MAC³PARK Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/deri3c1770369899.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6dxlx81770369755.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489152",
- "idAPIfootball": "1552204",
- "strTimestamp": "2026-10-25T13:30:00",
- "strEvent": "PSV Eindhoven vs Feyenoord",
- "strEventAlternate": "Feyenoord @ PSV Eindhoven",
- "strFilename": "Dutch Eredivisie 2026-10-25 PSV Eindhoven vs Feyenoord",
+ "idEvent": "2268239",
+ "idAPIfootball": "1380953",
+ "strTimestamp": "2025-10-26T11:15:00",
+ "strEvent": "Twente vs Ajax",
+ "strEventAlternate": "Ajax @ Twente",
+ "strFilename": "Dutch Eredivisie 2025-10-26 Twente vs Ajax",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PSV Eindhoven",
- "strAwayTeam": "Feyenoord",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Twente",
+ "strAwayTeam": "Ajax",
+ "intHomeScore": "2",
"intRound": "10",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-25",
- "dateEventLocal": null,
- "strTime": "13:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133768",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
- "idAwayTeam": "133758",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "dateEvent": "2025-10-26",
+ "dateEventLocal": "2025-10-26",
+ "strTime": "11:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133774",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "idAwayTeam": "133772",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15844",
- "strVenue": "Philips Stadion",
+ "strResult": "",
+ "idVenue": "15859",
+ "strVenue": "De Grolsch Veste",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/g3j9ck1770369881.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2ltdqo1769670739.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489153",
- "idAPIfootball": "1552203",
- "strTimestamp": "2026-10-25T13:30:00",
- "strEvent": "NEC Nijmegen vs Groningen",
- "strEventAlternate": "Groningen @ NEC Nijmegen",
- "strFilename": "Dutch Eredivisie 2026-10-25 NEC Nijmegen vs Groningen",
+ "idEvent": "2268240",
+ "idAPIfootball": "1380954",
+ "strTimestamp": "2025-10-26T13:30:00",
+ "strEvent": "Feyenoord vs PSV Eindhoven",
+ "strEventAlternate": "PSV Eindhoven @ Feyenoord",
+ "strFilename": "Dutch Eredivisie 2025-10-26 Feyenoord vs PSV Eindhoven",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "NEC Nijmegen",
- "strAwayTeam": "Groningen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Feyenoord",
+ "strAwayTeam": "PSV Eindhoven",
+ "intHomeScore": "2",
"intRound": "10",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-25",
- "dateEventLocal": null,
+ "dateEvent": "2025-10-26",
+ "dateEventLocal": "2025-10-26",
"strTime": "13:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133760",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
- "idAwayTeam": "133762",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133758",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "idAwayTeam": "133768",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17971",
- "strVenue": "Goffertstadion",
+ "strResult": "",
+ "idVenue": "15855",
+ "strVenue": "Stadion Feyenoord",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/y8mtcl1770369758.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489154",
- "idAPIfootball": "1552205",
- "strTimestamp": "2026-10-25T15:45:00",
- "strEvent": "Sparta Rotterdam vs Ajax",
- "strEventAlternate": "Ajax @ Sparta Rotterdam",
- "strFilename": "Dutch Eredivisie 2026-10-25 Sparta Rotterdam vs Ajax",
+ "idEvent": "2268241",
+ "idAPIfootball": "1380955",
+ "strTimestamp": "2025-10-26T19:00:00",
+ "strEvent": "Go Ahead Eagles vs Excelsior",
+ "strEventAlternate": "Excelsior @ Go Ahead Eagles",
+ "strFilename": "Dutch Eredivisie 2025-10-26 Go Ahead Eagles vs Excelsior",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Sparta Rotterdam",
- "strAwayTeam": "Ajax",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Go Ahead Eagles",
+ "strAwayTeam": "Excelsior",
+ "intHomeScore": "2",
"intRound": "10",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-25",
- "dateEventLocal": null,
- "strTime": "15:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133866",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
- "idAwayTeam": "133772",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "dateEvent": "2025-10-26",
+ "dateEventLocal": "2025-10-26",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134304",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "idAwayTeam": "133757",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18581",
- "strVenue": "Spartastadion",
+ "strResult": "",
+ "idVenue": "17966",
+ "strVenue": "De Adelaarshorst",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/whbufm1769670714.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7v6q7u1770369762.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489155",
- "idAPIfootball": "1552206",
- "strTimestamp": "2026-10-25T19:00:00",
- "strEvent": "AZ Alkmaar vs Twente",
- "strEventAlternate": "Twente @ AZ Alkmaar",
- "strFilename": "Dutch Eredivisie 2026-10-25 AZ Alkmaar vs Twente",
+ "idEvent": "2268242",
+ "idAPIfootball": "1380956",
+ "strTimestamp": "2025-10-26T15:45:00",
+ "strEvent": "AZ Alkmaar vs Utrecht",
+ "strEventAlternate": "Utrecht @ AZ Alkmaar",
+ "strFilename": "Dutch Eredivisie 2025-10-26 AZ Alkmaar vs Utrecht",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "AZ Alkmaar",
- "strAwayTeam": "Twente",
- "intHomeScore": null,
+ "strAwayTeam": "Utrecht",
+ "intHomeScore": "4",
"intRound": "10",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-25",
- "dateEventLocal": null,
- "strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2025-10-26",
+ "dateEventLocal": "2025-10-26",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
"idHomeTeam": "133767",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
- "idAwayTeam": "133774",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "idAwayTeam": "133764",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "15860",
"strVenue": "AFAS Stadion Alkmaar",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/af756f1750407226.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489156",
- "idAPIfootball": "1552207",
- "strTimestamp": "2026-10-31T15:30:00",
- "strEvent": "Feyenoord vs Fortuna Sittard",
- "strEventAlternate": "Fortuna Sittard @ Feyenoord",
- "strFilename": "Dutch Eredivisie 2026-10-31 Feyenoord vs Fortuna Sittard",
+ "idEvent": "2268243",
+ "idAPIfootball": "1380957",
+ "strTimestamp": "2025-10-31T19:00:00",
+ "strEvent": "PSV Eindhoven vs Fortuna Sittard",
+ "strEventAlternate": "Fortuna Sittard @ PSV Eindhoven",
+ "strFilename": "Dutch Eredivisie 2025-10-31 PSV Eindhoven vs Fortuna Sittard",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Feyenoord",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PSV Eindhoven",
"strAwayTeam": "Fortuna Sittard",
- "intHomeScore": null,
+ "intHomeScore": "5",
"intRound": "11",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-31",
- "dateEventLocal": null,
- "strTime": "15:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133758",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "dateEvent": "2025-10-31",
+ "dateEventLocal": "2025-10-31",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133768",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"idAwayTeam": "134264",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15855",
- "strVenue": "Stadion Feyenoord",
+ "strResult": "",
+ "idVenue": "15844",
+ "strVenue": "Philips Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9twmv31770369720.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8vcctt1770369766.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489157",
- "idAPIfootball": "1552209",
- "strTimestamp": "2026-10-31T17:45:00",
- "strEvent": "PSV Eindhoven vs Willem II",
- "strEventAlternate": "Willem II @ PSV Eindhoven",
- "strFilename": "Dutch Eredivisie 2026-10-31 PSV Eindhoven vs Willem II",
+ "idEvent": "2268244",
+ "idAPIfootball": "1380958",
+ "strTimestamp": "2025-11-01T19:00:00",
+ "strEvent": "Feyenoord vs FC Volendam",
+ "strEventAlternate": "FC Volendam @ Feyenoord",
+ "strFilename": "Dutch Eredivisie 2025-11-01 Feyenoord vs FC Volendam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PSV Eindhoven",
- "strAwayTeam": "Willem II",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Feyenoord",
+ "strAwayTeam": "FC Volendam",
+ "intHomeScore": "3",
"intRound": "11",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-31",
- "dateEventLocal": null,
- "strTime": "17:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133768",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
- "idAwayTeam": "133827",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
+ "dateEvent": "2025-11-01",
+ "dateEventLocal": "2025-11-01",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133758",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "idAwayTeam": "133867",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15844",
- "strVenue": "Philips Stadion",
+ "strResult": "",
+ "idVenue": "15855",
+ "strVenue": "Stadion Feyenoord",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yj307m1625514339.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/okux3r1770369770.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489158",
- "idAPIfootball": "1552208",
- "strTimestamp": "2026-10-31T17:45:00",
- "strEvent": "Heerenveen vs NEC Nijmegen",
- "strEventAlternate": "NEC Nijmegen @ Heerenveen",
- "strFilename": "Dutch Eredivisie 2026-10-31 Heerenveen vs NEC Nijmegen",
+ "idEvent": "2268245",
+ "idAPIfootball": "1380959",
+ "strTimestamp": "2025-11-01T17:45:00",
+ "strEvent": "NAC Breda vs Go Ahead Eagles",
+ "strEventAlternate": "Go Ahead Eagles @ NAC Breda",
+ "strFilename": "Dutch Eredivisie 2025-11-01 NAC Breda vs Go Ahead Eagles",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Heerenveen",
- "strAwayTeam": "NEC Nijmegen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NAC Breda",
+ "strAwayTeam": "Go Ahead Eagles",
+ "intHomeScore": "1",
"intRound": "11",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-31",
- "dateEventLocal": null,
+ "dateEvent": "2025-11-01",
+ "dateEventLocal": "2025-11-01",
"strTime": "17:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133759",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
- "idAwayTeam": "133760",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133773",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
+ "idAwayTeam": "134304",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15861",
- "strVenue": "Abe Lenstra Stadion",
+ "strResult": "",
+ "idVenue": "15866",
+ "strVenue": "Rat Verlegh Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7ymu661770369773.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489159",
- "idAPIfootball": "1552210",
- "strTimestamp": "2026-10-31T20:00:00",
- "strEvent": "Ajax vs AZ Alkmaar",
- "strEventAlternate": "AZ Alkmaar @ Ajax",
- "strFilename": "Dutch Eredivisie 2026-10-31 Ajax vs AZ Alkmaar",
+ "idEvent": "2268246",
+ "idAPIfootball": "1380960",
+ "strTimestamp": "2025-11-01T15:30:00",
+ "strEvent": "Ajax vs Heerenveen",
+ "strEventAlternate": "Heerenveen @ Ajax",
+ "strFilename": "Dutch Eredivisie 2025-11-01 Ajax vs Heerenveen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Ajax",
- "strAwayTeam": "AZ Alkmaar",
- "intHomeScore": null,
+ "strAwayTeam": "Heerenveen",
+ "intHomeScore": "1",
"intRound": "11",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-31",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2025-11-01",
+ "dateEventLocal": "2025-11-01",
+ "strTime": "15:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
"idHomeTeam": "133772",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
- "idAwayTeam": "133767",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "idAwayTeam": "133759",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "21448",
"strVenue": "Johan Cruijff ArenA",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4ilb501769670717.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/s14en21769670743.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489160",
- "idAPIfootball": "1552211",
- "strTimestamp": "2026-10-31T20:00:00",
- "strEvent": "Cambuur vs Go Ahead Eagles",
- "strEventAlternate": "Go Ahead Eagles @ Cambuur",
- "strFilename": "Dutch Eredivisie 2026-10-31 Cambuur vs Go Ahead Eagles",
+ "idEvent": "2268247",
+ "idAPIfootball": "1380961",
+ "strTimestamp": "2025-11-01T20:00:00",
+ "strEvent": "SC Telstar vs Excelsior",
+ "strEventAlternate": "Excelsior @ SC Telstar",
+ "strFilename": "Dutch Eredivisie 2025-11-01 SC Telstar vs Excelsior",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Cambuur",
- "strAwayTeam": "Go Ahead Eagles",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "SC Telstar",
+ "strAwayTeam": "Excelsior",
+ "intHomeScore": "2",
"intRound": "11",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-10-31",
- "dateEventLocal": null,
+ "dateEvent": "2025-11-01",
+ "dateEventLocal": "2025-11-01",
"strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134303",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
- "idAwayTeam": "134304",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "138004",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "idAwayTeam": "133757",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "34141",
- "strVenue": "Kooi Stadion",
+ "strResult": "",
+ "idVenue": "17957",
+ "strVenue": "711 Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/gldfxi1750407234.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489161",
- "idAPIfootball": "1552212",
- "strTimestamp": "2026-11-01T11:15:00",
- "strEvent": "PEC Zwolle vs ADO Den Haag",
- "strEventAlternate": "ADO Den Haag @ PEC Zwolle",
- "strFilename": "Dutch Eredivisie 2026-11-01 PEC Zwolle vs ADO Den Haag",
+ "idEvent": "2268248",
+ "idAPIfootball": "1380962",
+ "strTimestamp": "2025-11-02T11:15:00",
+ "strEvent": "Heracles Almelo vs PEC Zwolle",
+ "strEventAlternate": "PEC Zwolle @ Heracles Almelo",
+ "strFilename": "Dutch Eredivisie 2025-11-02 Heracles Almelo vs PEC Zwolle",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PEC Zwolle",
- "strAwayTeam": "ADO Den Haag",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heracles Almelo",
+ "strAwayTeam": "PEC Zwolle",
+ "intHomeScore": "8",
"intRound": "11",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-01",
- "dateEventLocal": null,
+ "dateEvent": "2025-11-02",
+ "dateEventLocal": "2025-11-02",
"strTime": "11:15:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133936",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
- "idAwayTeam": "133769",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133766",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
+ "idAwayTeam": "133936",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18579",
- "strVenue": "MAC³PARK Stadion",
+ "strResult": "",
+ "idVenue": "18584",
+ "strVenue": "Asito Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/v4cj1t1601658949.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/w3olsh1750407238.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489162",
- "idAPIfootball": "1552213",
- "strTimestamp": "2026-11-01T13:30:00",
- "strEvent": "Excelsior vs Twente",
- "strEventAlternate": "Twente @ Excelsior",
- "strFilename": "Dutch Eredivisie 2026-11-01 Excelsior vs Twente",
+ "idEvent": "2268249",
+ "idAPIfootball": "1380963",
+ "strTimestamp": "2025-11-02T13:30:00",
+ "strEvent": "Groningen vs Twente",
+ "strEventAlternate": "Twente @ Groningen",
+ "strFilename": "Dutch Eredivisie 2025-11-02 Groningen vs Twente",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Excelsior",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Groningen",
"strAwayTeam": "Twente",
- "intHomeScore": null,
+ "intHomeScore": "1",
"intRound": "11",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-01",
- "dateEventLocal": null,
+ "dateEvent": "2025-11-02",
+ "dateEventLocal": "2025-11-02",
"strTime": "13:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133757",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133762",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
"idAwayTeam": "133774",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15862",
- "strVenue": "Van Donge and De Roo Stadion",
+ "strResult": "",
+ "idVenue": "21331",
+ "strVenue": "Euroborg",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8y0x391750407241.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489163",
- "idAPIfootball": "1552214",
- "strTimestamp": "2026-11-01T13:30:00",
- "strEvent": "Telstar vs Utrecht",
- "strEventAlternate": "Utrecht @ Telstar",
- "strFilename": "Dutch Eredivisie 2026-11-01 Telstar vs Utrecht",
+ "idEvent": "2268250",
+ "idAPIfootball": "1380964",
+ "strTimestamp": "2025-11-02T13:30:00",
+ "strEvent": "Sparta Rotterdam vs AZ Alkmaar",
+ "strEventAlternate": "AZ Alkmaar @ Sparta Rotterdam",
+ "strFilename": "Dutch Eredivisie 2025-11-02 Sparta Rotterdam vs AZ Alkmaar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Telstar",
- "strAwayTeam": "Utrecht",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Sparta Rotterdam",
+ "strAwayTeam": "AZ Alkmaar",
+ "intHomeScore": "0",
"intRound": "11",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-01",
- "dateEventLocal": null,
+ "dateEvent": "2025-11-02",
+ "dateEventLocal": "2025-11-02",
"strTime": "13:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "138004",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
- "idAwayTeam": "133764",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133866",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "idAwayTeam": "133767",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17957",
- "strVenue": "711 Stadion",
+ "strResult": "",
+ "idVenue": "18581",
+ "strVenue": "Spartastadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mnyip31750407245.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489164",
- "idAPIfootball": "1552215",
- "strTimestamp": "2026-11-01T15:45:00",
- "strEvent": "Groningen vs Sparta Rotterdam",
- "strEventAlternate": "Sparta Rotterdam @ Groningen",
- "strFilename": "Dutch Eredivisie 2026-11-01 Groningen vs Sparta Rotterdam",
+ "idEvent": "2268251",
+ "idAPIfootball": "1380965",
+ "strTimestamp": "2025-11-02T15:45:00",
+ "strEvent": "Utrecht vs NEC Nijmegen",
+ "strEventAlternate": "NEC Nijmegen @ Utrecht",
+ "strFilename": "Dutch Eredivisie 2025-11-02 Utrecht vs NEC Nijmegen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Groningen",
- "strAwayTeam": "Sparta Rotterdam",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Utrecht",
+ "strAwayTeam": "NEC Nijmegen",
+ "intHomeScore": "1",
"intRound": "11",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-01",
- "dateEventLocal": null,
+ "dateEvent": "2025-11-02",
+ "dateEventLocal": "2025-11-02",
"strTime": "15:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133762",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
- "idAwayTeam": "133866",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133764",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "idAwayTeam": "133760",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21331",
- "strVenue": "Euroborg",
+ "strResult": "",
+ "idVenue": "15864",
+ "strVenue": "Stadion Galgenwaard",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9rr3vi1750407249.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489165",
- "idAPIfootball": "1552216",
- "strTimestamp": "2026-11-06T19:00:00",
- "strEvent": "Willem II vs PEC Zwolle",
- "strEventAlternate": "PEC Zwolle @ Willem II",
- "strFilename": "Dutch Eredivisie 2026-11-06 Willem II vs PEC Zwolle",
+ "idEvent": "2268252",
+ "idAPIfootball": "1380966",
+ "strTimestamp": "2025-11-07T19:00:00",
+ "strEvent": "Twente vs SC Telstar",
+ "strEventAlternate": "SC Telstar @ Twente",
+ "strFilename": "Dutch Eredivisie 2025-11-07 Twente vs SC Telstar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Willem II",
- "strAwayTeam": "PEC Zwolle",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Twente",
+ "strAwayTeam": "SC Telstar",
+ "intHomeScore": "0",
"intRound": "12",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-06",
- "dateEventLocal": null,
+ "dateEvent": "2025-11-07",
+ "dateEventLocal": "2025-11-07",
"strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133827",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
- "idAwayTeam": "133936",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133774",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "idAwayTeam": "138004",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15856",
- "strVenue": "Koning Willem II Stadion",
+ "strResult": "",
+ "idVenue": "15859",
+ "strVenue": "De Grolsch Veste",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9gdyck1625514197.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ua5ry11750407253.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489166",
- "idAPIfootball": "1552217",
- "strTimestamp": "2026-11-07T15:30:00",
- "strEvent": "Fortuna Sittard vs Telstar",
- "strEventAlternate": "Telstar @ Fortuna Sittard",
- "strFilename": "Dutch Eredivisie 2026-11-07 Fortuna Sittard vs Telstar",
+ "idEvent": "2268253",
+ "idAPIfootball": "1380967",
+ "strTimestamp": "2025-11-08T15:30:00",
+ "strEvent": "Excelsior vs Heracles Almelo",
+ "strEventAlternate": "Heracles Almelo @ Excelsior",
+ "strFilename": "Dutch Eredivisie 2025-11-08 Excelsior vs Heracles Almelo",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Fortuna Sittard",
- "strAwayTeam": "Telstar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Excelsior",
+ "strAwayTeam": "Heracles Almelo",
+ "intHomeScore": "1",
"intRound": "12",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-07",
- "dateEventLocal": null,
+ "dateEvent": "2025-11-08",
+ "dateEventLocal": "2025-11-08",
"strTime": "15:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134264",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
- "idAwayTeam": "138004",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133757",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "idAwayTeam": "133766",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18441",
- "strVenue": "Fortuna Sittard Stadion",
+ "strResult": "",
+ "idVenue": "15862",
+ "strVenue": "Van Donge and De Roo Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5c4czb1750407256.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489167",
- "idAPIfootball": "1552218",
- "strTimestamp": "2026-11-07T17:45:00",
- "strEvent": "Excelsior vs Go Ahead Eagles",
- "strEventAlternate": "Go Ahead Eagles @ Excelsior",
- "strFilename": "Dutch Eredivisie 2026-11-07 Excelsior vs Go Ahead Eagles",
+ "idEvent": "2268254",
+ "idAPIfootball": "1380968",
+ "strTimestamp": "2025-11-08T17:45:00",
+ "strEvent": "FC Volendam vs NAC Breda",
+ "strEventAlternate": "NAC Breda @ FC Volendam",
+ "strFilename": "Dutch Eredivisie 2025-11-08 FC Volendam vs NAC Breda",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Excelsior",
- "strAwayTeam": "Go Ahead Eagles",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "FC Volendam",
+ "strAwayTeam": "NAC Breda",
+ "intHomeScore": "2",
"intRound": "12",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-07",
- "dateEventLocal": null,
+ "dateEvent": "2025-11-08",
+ "dateEventLocal": "2025-11-08",
"strTime": "17:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133757",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
- "idAwayTeam": "134304",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133867",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
+ "idAwayTeam": "133773",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15862",
- "strVenue": "Van Donge and De Roo Stadion",
+ "strResult": "",
+ "idVenue": "17969",
+ "strVenue": "Kras Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/y6npw91770369903.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kjmdu51750407260.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489168",
- "idAPIfootball": "1552219",
- "strTimestamp": "2026-11-07T19:00:00",
- "strEvent": "Cambuur vs PSV Eindhoven",
- "strEventAlternate": "PSV Eindhoven @ Cambuur",
- "strFilename": "Dutch Eredivisie 2026-11-07 Cambuur vs PSV Eindhoven",
+ "idEvent": "2268255",
+ "idAPIfootball": "1380969",
+ "strTimestamp": "2025-11-08T19:00:00",
+ "strEvent": "Fortuna Sittard vs Heerenveen",
+ "strEventAlternate": "Heerenveen @ Fortuna Sittard",
+ "strFilename": "Dutch Eredivisie 2025-11-08 Fortuna Sittard vs Heerenveen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Cambuur",
- "strAwayTeam": "PSV Eindhoven",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Fortuna Sittard",
+ "strAwayTeam": "Heerenveen",
+ "intHomeScore": "2",
"intRound": "12",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-07",
- "dateEventLocal": null,
+ "dateEvent": "2025-11-08",
+ "dateEventLocal": "2025-11-08",
"strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134303",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
- "idAwayTeam": "133768",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134264",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "idAwayTeam": "133759",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "34141",
- "strVenue": "Kooi Stadion",
+ "strResult": "",
+ "idVenue": "18441",
+ "strVenue": "Fortuna Sittard Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9wdk0f1750407264.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489169",
- "idAPIfootball": "1552220",
- "strTimestamp": "2026-11-07T20:00:00",
- "strEvent": "ADO Den Haag vs Sparta Rotterdam",
- "strEventAlternate": "Sparta Rotterdam @ ADO Den Haag",
- "strFilename": "Dutch Eredivisie 2026-11-07 ADO Den Haag vs Sparta Rotterdam",
+ "idEvent": "2268256",
+ "idAPIfootball": "1380970",
+ "strTimestamp": "2025-11-08T20:00:00",
+ "strEvent": "PEC Zwolle vs Sparta Rotterdam",
+ "strEventAlternate": "Sparta Rotterdam @ PEC Zwolle",
+ "strFilename": "Dutch Eredivisie 2025-11-08 PEC Zwolle vs Sparta Rotterdam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "ADO Den Haag",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PEC Zwolle",
"strAwayTeam": "Sparta Rotterdam",
- "intHomeScore": null,
+ "intHomeScore": "1",
"intRound": "12",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-07",
- "dateEventLocal": null,
+ "dateEvent": "2025-11-08",
+ "dateEventLocal": "2025-11-08",
"strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133769",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133936",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
"idAwayTeam": "133866",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15843",
- "strVenue": "Cars Jeans Stadion",
+ "strResult": "",
+ "idVenue": "18579",
+ "strVenue": "MAC³PARK Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/htkm0u1750407268.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489170",
- "idAPIfootball": "1552221",
- "strTimestamp": "2026-11-08T11:15:00",
- "strEvent": "Heerenveen vs Feyenoord",
- "strEventAlternate": "Feyenoord @ Heerenveen",
- "strFilename": "Dutch Eredivisie 2026-11-08 Heerenveen vs Feyenoord",
+ "idEvent": "2268257",
+ "idAPIfootball": "1380971",
+ "strTimestamp": "2025-11-09T11:15:00",
+ "strEvent": "Utrecht vs Ajax",
+ "strEventAlternate": "Ajax @ Utrecht",
+ "strFilename": "Dutch Eredivisie 2025-11-09 Utrecht vs Ajax",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Heerenveen",
- "strAwayTeam": "Feyenoord",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Utrecht",
+ "strAwayTeam": "Ajax",
+ "intHomeScore": "2",
"intRound": "12",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-08",
- "dateEventLocal": null,
+ "dateEvent": "2025-11-09",
+ "dateEventLocal": "2025-11-09",
"strTime": "11:15:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133759",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
- "idAwayTeam": "133758",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133764",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "idAwayTeam": "133772",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15861",
- "strVenue": "Abe Lenstra Stadion",
+ "strResult": "",
+ "idVenue": "15864",
+ "strVenue": "Stadion Galgenwaard",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/m6c6en1769670746.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489171",
- "idAPIfootball": "1552223",
- "strTimestamp": "2026-11-08T13:30:00",
- "strEvent": "Utrecht vs NEC Nijmegen",
- "strEventAlternate": "NEC Nijmegen @ Utrecht",
- "strFilename": "Dutch Eredivisie 2026-11-08 Utrecht vs NEC Nijmegen",
+ "idEvent": "2268258",
+ "idAPIfootball": "1380972",
+ "strTimestamp": "2025-11-09T15:45:00",
+ "strEvent": "AZ Alkmaar vs PSV Eindhoven",
+ "strEventAlternate": "PSV Eindhoven @ AZ Alkmaar",
+ "strFilename": "Dutch Eredivisie 2025-11-09 AZ Alkmaar vs PSV Eindhoven",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Utrecht",
- "strAwayTeam": "NEC Nijmegen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "AZ Alkmaar",
+ "strAwayTeam": "PSV Eindhoven",
+ "intHomeScore": "1",
"intRound": "12",
- "intAwayScore": null,
+ "intAwayScore": "5",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-08",
- "dateEventLocal": null,
- "strTime": "13:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133764",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
- "idAwayTeam": "133760",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "dateEvent": "2025-11-09",
+ "dateEventLocal": "2025-11-09",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133767",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "idAwayTeam": "133768",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15864",
- "strVenue": "Stadion Galgenwaard",
+ "strResult": "",
+ "idVenue": "15860",
+ "strVenue": "AFAS Stadion Alkmaar",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8yo69z1770369777.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489172",
- "idAPIfootball": "1552222",
- "strTimestamp": "2026-11-08T13:30:00",
- "strEvent": "Twente vs Ajax",
- "strEventAlternate": "Ajax @ Twente",
- "strFilename": "Dutch Eredivisie 2026-11-08 Twente vs Ajax",
+ "idEvent": "2268259",
+ "idAPIfootball": "1380973",
+ "strTimestamp": "2025-11-09T13:30:00",
+ "strEvent": "NEC Nijmegen vs Groningen",
+ "strEventAlternate": "Groningen @ NEC Nijmegen",
+ "strFilename": "Dutch Eredivisie 2025-11-09 NEC Nijmegen vs Groningen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Twente",
- "strAwayTeam": "Ajax",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NEC Nijmegen",
+ "strAwayTeam": "Groningen",
+ "intHomeScore": "2",
"intRound": "12",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-08",
- "dateEventLocal": null,
+ "dateEvent": "2025-11-09",
+ "dateEventLocal": "2025-11-09",
"strTime": "13:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133774",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
- "idAwayTeam": "133772",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133760",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "idAwayTeam": "133762",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15859",
- "strVenue": "De Grolsch Veste",
+ "strResult": "",
+ "idVenue": "17971",
+ "strVenue": "Goffertstadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2ltdqo1769670739.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/svehnl1750407275.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489173",
- "idAPIfootball": "1552224",
- "strTimestamp": "2026-11-08T15:45:00",
- "strEvent": "AZ Alkmaar vs Groningen",
- "strEventAlternate": "Groningen @ AZ Alkmaar",
- "strFilename": "Dutch Eredivisie 2026-11-08 AZ Alkmaar vs Groningen",
+ "idEvent": "2268260",
+ "idAPIfootball": "1380974",
+ "strTimestamp": "2025-11-09T19:00:00",
+ "strEvent": "Go Ahead Eagles vs Feyenoord",
+ "strEventAlternate": "Feyenoord @ Go Ahead Eagles",
+ "strFilename": "Dutch Eredivisie 2025-11-09 Go Ahead Eagles vs Feyenoord",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "AZ Alkmaar",
- "strAwayTeam": "Groningen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Go Ahead Eagles",
+ "strAwayTeam": "Feyenoord",
+ "intHomeScore": "2",
"intRound": "12",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-08",
- "dateEventLocal": null,
- "strTime": "15:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133767",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
- "idAwayTeam": "133762",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "dateEvent": "2025-11-09",
+ "dateEventLocal": "2025-11-09",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134304",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "idAwayTeam": "133758",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15860",
- "strVenue": "AFAS Stadion Alkmaar",
+ "strResult": "",
+ "idVenue": "17966",
+ "strVenue": "De Adelaarshorst",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9njvq21770369781.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489174",
- "idAPIfootball": "1552225",
- "strTimestamp": "2026-11-22T16:00:00",
- "strEvent": "Ajax vs ADO Den Haag",
- "strEventAlternate": "ADO Den Haag @ Ajax",
- "strFilename": "Dutch Eredivisie 2026-11-22 Ajax vs ADO Den Haag",
+ "idEvent": "2268261",
+ "idAPIfootball": "1380975",
+ "strTimestamp": "2025-11-22T17:45:00",
+ "strEvent": "Ajax vs Excelsior",
+ "strEventAlternate": "Excelsior @ Ajax",
+ "strFilename": "Dutch Eredivisie 2025-11-22 Ajax vs Excelsior",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Ajax",
- "strAwayTeam": "ADO Den Haag",
- "intHomeScore": null,
+ "strAwayTeam": "Excelsior",
+ "intHomeScore": "1",
"intRound": "13",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2025-11-22",
+ "dateEventLocal": "2025-11-22",
+ "strTime": "17:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
"idHomeTeam": "133772",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
- "idAwayTeam": "133769",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "idAwayTeam": "133757",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "21448",
"strVenue": "Johan Cruijff ArenA",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/b97ivm1601658913.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ar4zrx1769670750.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489175",
- "idAPIfootball": "1552228",
- "strTimestamp": "2026-11-22T16:00:00",
- "strEvent": "Groningen vs Heerenveen",
- "strEventAlternate": "Heerenveen @ Groningen",
- "strFilename": "Dutch Eredivisie 2026-11-22 Groningen vs Heerenveen",
+ "idEvent": "2268262",
+ "idAPIfootball": "1380976",
+ "strTimestamp": "2025-11-22T17:45:00",
+ "strEvent": "FC Volendam vs Twente",
+ "strEventAlternate": "Twente @ FC Volendam",
+ "strFilename": "Dutch Eredivisie 2025-11-22 FC Volendam vs Twente",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Groningen",
- "strAwayTeam": "Heerenveen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "FC Volendam",
+ "strAwayTeam": "Twente",
+ "intHomeScore": "1",
"intRound": "13",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133762",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
- "idAwayTeam": "133759",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "dateEvent": "2025-11-22",
+ "dateEventLocal": "2025-11-22",
+ "strTime": "17:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133867",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
+ "idAwayTeam": "133774",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21331",
- "strVenue": "Euroborg",
+ "strResult": "",
+ "idVenue": "17969",
+ "strVenue": "Kras Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/k8bxdl1750407279.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489176",
- "idAPIfootball": "1552233",
- "strTimestamp": "2026-11-22T16:00:00",
- "strEvent": "Utrecht vs Cambuur",
- "strEventAlternate": "Cambuur @ Utrecht",
- "strFilename": "Dutch Eredivisie 2026-11-22 Utrecht vs Cambuur",
+ "idEvent": "2268266",
+ "idAPIfootball": "1380980",
+ "strTimestamp": "2025-11-22T20:00:00",
+ "strEvent": "Heracles Almelo vs Go Ahead Eagles",
+ "strEventAlternate": "Go Ahead Eagles @ Heracles Almelo",
+ "strFilename": "Dutch Eredivisie 2025-11-22 Heracles Almelo vs Go Ahead Eagles",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Utrecht",
- "strAwayTeam": "Cambuur",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heracles Almelo",
+ "strAwayTeam": "Go Ahead Eagles",
+ "intHomeScore": "4",
"intRound": "13",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133764",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
- "idAwayTeam": "134303",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
+ "dateEvent": "2025-11-22",
+ "dateEventLocal": "2025-11-22",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133766",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
+ "idAwayTeam": "134304",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15864",
- "strVenue": "Stadion Galgenwaard",
+ "strResult": "",
+ "idVenue": "18584",
+ "strVenue": "Asito Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/iwd5fv1750407290.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489177",
- "idAPIfootball": "1552226",
- "strTimestamp": "2026-11-22T16:00:00",
- "strEvent": "Feyenoord vs Excelsior",
- "strEventAlternate": "Excelsior @ Feyenoord",
- "strFilename": "Dutch Eredivisie 2026-11-22 Feyenoord vs Excelsior",
+ "idEvent": "2268267",
+ "idAPIfootball": "1380981",
+ "strTimestamp": "2025-11-22T15:30:00",
+ "strEvent": "NAC Breda vs PSV Eindhoven",
+ "strEventAlternate": "PSV Eindhoven @ NAC Breda",
+ "strFilename": "Dutch Eredivisie 2025-11-22 NAC Breda vs PSV Eindhoven",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Feyenoord",
- "strAwayTeam": "Excelsior",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NAC Breda",
+ "strAwayTeam": "PSV Eindhoven",
+ "intHomeScore": "0",
"intRound": "13",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133758",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
- "idAwayTeam": "133757",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "dateEvent": "2025-11-22",
+ "dateEventLocal": "2025-11-22",
+ "strTime": "15:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133773",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
+ "idAwayTeam": "133768",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15855",
- "strVenue": "Stadion Feyenoord",
+ "strResult": "",
+ "idVenue": "15866",
+ "strVenue": "Rat Verlegh Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/46prsf1770369918.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ylja9n1750407294.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489178",
- "idAPIfootball": "1552227",
- "strTimestamp": "2026-11-22T16:00:00",
- "strEvent": "Go Ahead Eagles vs Fortuna Sittard",
- "strEventAlternate": "Fortuna Sittard @ Go Ahead Eagles",
- "strFilename": "Dutch Eredivisie 2026-11-22 Go Ahead Eagles vs Fortuna Sittard",
+ "idEvent": "2268268",
+ "idAPIfootball": "1380982",
+ "strTimestamp": "2025-11-22T20:00:00",
+ "strEvent": "Sparta Rotterdam vs Fortuna Sittard",
+ "strEventAlternate": "Fortuna Sittard @ Sparta Rotterdam",
+ "strFilename": "Dutch Eredivisie 2025-11-22 Sparta Rotterdam vs Fortuna Sittard",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Go Ahead Eagles",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Sparta Rotterdam",
"strAwayTeam": "Fortuna Sittard",
- "intHomeScore": null,
+ "intHomeScore": "1",
"intRound": "13",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134304",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "dateEvent": "2025-11-22",
+ "dateEventLocal": "2025-11-22",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133866",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
"idAwayTeam": "134264",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17966",
- "strVenue": "De Adelaarshorst",
+ "strResult": "",
+ "idVenue": "18581",
+ "strVenue": "Spartastadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1jxxj91770369854.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5u3l4d1750407298.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489179",
- "idAPIfootball": "1552229",
- "strTimestamp": "2026-11-22T16:00:00",
- "strEvent": "NEC Nijmegen vs PSV Eindhoven",
- "strEventAlternate": "PSV Eindhoven @ NEC Nijmegen",
- "strFilename": "Dutch Eredivisie 2026-11-22 NEC Nijmegen vs PSV Eindhoven",
+ "idEvent": "2268263",
+ "idAPIfootball": "1380977",
+ "strTimestamp": "2025-11-23T13:30:00",
+ "strEvent": "Feyenoord vs NEC Nijmegen",
+ "strEventAlternate": "NEC Nijmegen @ Feyenoord",
+ "strFilename": "Dutch Eredivisie 2025-11-23 Feyenoord vs NEC Nijmegen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "NEC Nijmegen",
- "strAwayTeam": "PSV Eindhoven",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Feyenoord",
+ "strAwayTeam": "NEC Nijmegen",
+ "intHomeScore": "2",
"intRound": "13",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133760",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
- "idAwayTeam": "133768",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "dateEvent": "2025-11-23",
+ "dateEventLocal": "2025-11-23",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133758",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "idAwayTeam": "133760",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17971",
- "strVenue": "Goffertstadion",
+ "strResult": "",
+ "idVenue": "15855",
+ "strVenue": "Stadion Feyenoord",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/egs6401770369717.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kw39kn1770369785.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489180",
- "idAPIfootball": "1552232",
- "strTimestamp": "2026-11-22T16:00:00",
- "strEvent": "Twente vs Willem II",
- "strEventAlternate": "Willem II @ Twente",
- "strFilename": "Dutch Eredivisie 2026-11-22 Twente vs Willem II",
+ "idEvent": "2268264",
+ "idAPIfootball": "1380978",
+ "strTimestamp": "2025-11-23T15:45:00",
+ "strEvent": "Groningen vs PEC Zwolle",
+ "strEventAlternate": "PEC Zwolle @ Groningen",
+ "strFilename": "Dutch Eredivisie 2025-11-23 Groningen vs PEC Zwolle",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Twente",
- "strAwayTeam": "Willem II",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Groningen",
+ "strAwayTeam": "PEC Zwolle",
+ "intHomeScore": "2",
"intRound": "13",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133774",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
- "idAwayTeam": "133827",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
+ "dateEvent": "2025-11-23",
+ "dateEventLocal": "2025-11-23",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133762",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "idAwayTeam": "133936",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15859",
- "strVenue": "De Grolsch Veste",
+ "strResult": "",
+ "idVenue": "21331",
+ "strVenue": "Euroborg",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kyntuw1750407282.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489181",
- "idAPIfootball": "1552230",
- "strTimestamp": "2026-11-22T16:00:00",
- "strEvent": "Sparta Rotterdam vs AZ Alkmaar",
- "strEventAlternate": "AZ Alkmaar @ Sparta Rotterdam",
- "strFilename": "Dutch Eredivisie 2026-11-22 Sparta Rotterdam vs AZ Alkmaar",
+ "idEvent": "2268265",
+ "idAPIfootball": "1380979",
+ "strTimestamp": "2025-11-23T11:15:00",
+ "strEvent": "Heerenveen vs AZ Alkmaar",
+ "strEventAlternate": "AZ Alkmaar @ Heerenveen",
+ "strFilename": "Dutch Eredivisie 2025-11-23 Heerenveen vs AZ Alkmaar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Sparta Rotterdam",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heerenveen",
"strAwayTeam": "AZ Alkmaar",
- "intHomeScore": null,
+ "intHomeScore": "3",
"intRound": "13",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133866",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "dateEvent": "2025-11-23",
+ "dateEventLocal": "2025-11-23",
+ "strTime": "11:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133759",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"idAwayTeam": "133767",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18581",
- "strVenue": "Spartastadion",
+ "strResult": "",
+ "idVenue": "15861",
+ "strVenue": "Abe Lenstra Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/h4dzwp1750407286.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489182",
- "idAPIfootball": "1552231",
- "strTimestamp": "2026-11-22T16:00:00",
- "strEvent": "Telstar vs PEC Zwolle",
- "strEventAlternate": "PEC Zwolle @ Telstar",
- "strFilename": "Dutch Eredivisie 2026-11-22 Telstar vs PEC Zwolle",
+ "idEvent": "2268269",
+ "idAPIfootball": "1380983",
+ "strTimestamp": "2025-11-23T13:30:00",
+ "strEvent": "SC Telstar vs Utrecht",
+ "strEventAlternate": "Utrecht @ SC Telstar",
+ "strFilename": "Dutch Eredivisie 2025-11-23 SC Telstar vs Utrecht",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Telstar",
- "strAwayTeam": "PEC Zwolle",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "SC Telstar",
+ "strAwayTeam": "Utrecht",
+ "intHomeScore": "1",
"intRound": "13",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2025-11-23",
+ "dateEventLocal": "2025-11-23",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
"idHomeTeam": "138004",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
- "idAwayTeam": "133936",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "133764",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "17957",
"strVenue": "711 Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qeofsy1750407301.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489183",
- "idAPIfootball": "1552242",
- "strTimestamp": "2026-11-29T16:00:00",
- "strEvent": "PEC Zwolle vs AZ Alkmaar",
- "strEventAlternate": "AZ Alkmaar @ PEC Zwolle",
- "strFilename": "Dutch Eredivisie 2026-11-29 PEC Zwolle vs AZ Alkmaar",
+ "idEvent": "2268278",
+ "idAPIfootball": "1380992",
+ "strTimestamp": "2025-11-28T19:00:00",
+ "strEvent": "PEC Zwolle vs Heerenveen",
+ "strEventAlternate": "Heerenveen @ PEC Zwolle",
+ "strFilename": "Dutch Eredivisie 2025-11-28 PEC Zwolle vs Heerenveen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "PEC Zwolle",
- "strAwayTeam": "AZ Alkmaar",
- "intHomeScore": null,
+ "strAwayTeam": "Heerenveen",
+ "intHomeScore": "2",
"intRound": "14",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2025-11-28",
+ "dateEventLocal": "2025-11-28",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
"idHomeTeam": "133936",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
- "idAwayTeam": "133767",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "idAwayTeam": "133759",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "18579",
"strVenue": "MAC³PARK Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/au29xx1770369865.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3vup5l1750407331.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489184",
- "idAPIfootball": "1552236",
- "strTimestamp": "2026-11-29T16:00:00",
- "strEvent": "Excelsior vs Telstar",
- "strEventAlternate": "Telstar @ Excelsior",
- "strFilename": "Dutch Eredivisie 2026-11-29 Excelsior vs Telstar",
+ "idEvent": "2268271",
+ "idAPIfootball": "1380985",
+ "strTimestamp": "2025-11-29T15:30:00",
+ "strEvent": "Excelsior vs NAC Breda",
+ "strEventAlternate": "NAC Breda @ Excelsior",
+ "strFilename": "Dutch Eredivisie 2025-11-29 Excelsior vs NAC Breda",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Excelsior",
- "strAwayTeam": "Telstar",
- "intHomeScore": null,
+ "strAwayTeam": "NAC Breda",
+ "intHomeScore": "1",
"intRound": "14",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2025-11-29",
+ "dateEventLocal": "2025-11-29",
+ "strTime": "15:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
"idHomeTeam": "133757",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
- "idAwayTeam": "138004",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "idAwayTeam": "133773",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "15862",
"strVenue": "Van Donge and De Roo Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kk42p01770369788.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489185",
- "idAPIfootball": "1552240",
- "strTimestamp": "2026-11-29T16:00:00",
- "strEvent": "PSV Eindhoven vs Go Ahead Eagles",
- "strEventAlternate": "Go Ahead Eagles @ PSV Eindhoven",
- "strFilename": "Dutch Eredivisie 2026-11-29 PSV Eindhoven vs Go Ahead Eagles",
+ "idEvent": "2268273",
+ "idAPIfootball": "1380987",
+ "strTimestamp": "2025-11-29T20:00:00",
+ "strEvent": "NEC Nijmegen vs Sparta Rotterdam",
+ "strEventAlternate": "Sparta Rotterdam @ NEC Nijmegen",
+ "strFilename": "Dutch Eredivisie 2025-11-29 NEC Nijmegen vs Sparta Rotterdam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PSV Eindhoven",
- "strAwayTeam": "Go Ahead Eagles",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NEC Nijmegen",
+ "strAwayTeam": "Sparta Rotterdam",
+ "intHomeScore": "3",
"intRound": "14",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133768",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
- "idAwayTeam": "134304",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "dateEvent": "2025-11-29",
+ "dateEventLocal": "2025-11-29",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133760",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "idAwayTeam": "133866",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15844",
- "strVenue": "Philips Stadion",
+ "strResult": "",
+ "idVenue": "17971",
+ "strVenue": "Goffertstadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/tvlrxe1770369747.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/751ig91750407312.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489186",
- "idAPIfootball": "1552235",
- "strTimestamp": "2026-11-29T16:00:00",
- "strEvent": "ADO Den Haag vs Utrecht",
- "strEventAlternate": "Utrecht @ ADO Den Haag",
- "strFilename": "Dutch Eredivisie 2026-11-29 ADO Den Haag vs Utrecht",
+ "idEvent": "2268275",
+ "idAPIfootball": "1380989",
+ "strTimestamp": "2025-11-29T17:45:00",
+ "strEvent": "Fortuna Sittard vs Heracles Almelo",
+ "strEventAlternate": "Heracles Almelo @ Fortuna Sittard",
+ "strFilename": "Dutch Eredivisie 2025-11-29 Fortuna Sittard vs Heracles Almelo",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "ADO Den Haag",
- "strAwayTeam": "Utrecht",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Fortuna Sittard",
+ "strAwayTeam": "Heracles Almelo",
+ "intHomeScore": "1",
"intRound": "14",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133769",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
- "idAwayTeam": "133764",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "dateEvent": "2025-11-29",
+ "dateEventLocal": "2025-11-29",
+ "strTime": "17:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "134264",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "idAwayTeam": "133766",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15843",
- "strVenue": "Cars Jeans Stadion",
+ "strResult": "",
+ "idVenue": "18441",
+ "strVenue": "Fortuna Sittard Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hsf49t1750407320.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489187",
- "idAPIfootball": "1552238",
- "strTimestamp": "2026-11-29T16:00:00",
- "strEvent": "Groningen vs Willem II",
- "strEventAlternate": "Willem II @ Groningen",
- "strFilename": "Dutch Eredivisie 2026-11-29 Groningen vs Willem II",
+ "idEvent": "2268272",
+ "idAPIfootball": "1380986",
+ "strTimestamp": "2025-11-30T13:30:00",
+ "strEvent": "Go Ahead Eagles vs Utrecht",
+ "strEventAlternate": "Utrecht @ Go Ahead Eagles",
+ "strFilename": "Dutch Eredivisie 2025-11-30 Go Ahead Eagles vs Utrecht",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Groningen",
- "strAwayTeam": "Willem II",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Go Ahead Eagles",
+ "strAwayTeam": "Utrecht",
+ "intHomeScore": "2",
"intRound": "14",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133762",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
- "idAwayTeam": "133827",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
+ "dateEvent": "2025-11-30",
+ "dateEventLocal": "2025-11-30",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "134304",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "idAwayTeam": "133764",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21331",
- "strVenue": "Euroborg",
+ "strResult": "",
+ "idVenue": "17966",
+ "strVenue": "De Adelaarshorst",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/a1enfg1750407309.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489188",
- "idAPIfootball": "1552241",
- "strTimestamp": "2026-11-29T16:00:00",
- "strEvent": "Fortuna Sittard vs Heerenveen",
- "strEventAlternate": "Heerenveen @ Fortuna Sittard",
- "strFilename": "Dutch Eredivisie 2026-11-29 Fortuna Sittard vs Heerenveen",
+ "idEvent": "2268274",
+ "idAPIfootball": "1380988",
+ "strTimestamp": "2025-11-30T11:15:00",
+ "strEvent": "PSV Eindhoven vs FC Volendam",
+ "strEventAlternate": "FC Volendam @ PSV Eindhoven",
+ "strFilename": "Dutch Eredivisie 2025-11-30 PSV Eindhoven vs FC Volendam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Fortuna Sittard",
- "strAwayTeam": "Heerenveen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PSV Eindhoven",
+ "strAwayTeam": "FC Volendam",
+ "intHomeScore": "3",
"intRound": "14",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134264",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
- "idAwayTeam": "133759",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "dateEvent": "2025-11-30",
+ "dateEventLocal": "2025-11-30",
+ "strTime": "11:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133768",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "idAwayTeam": "133867",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18441",
- "strVenue": "Fortuna Sittard Stadion",
+ "strResult": "",
+ "idVenue": "15844",
+ "strVenue": "Philips Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ipclla1750407316.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489189",
- "idAPIfootball": "1552237",
- "strTimestamp": "2026-11-29T16:00:00",
- "strEvent": "Feyenoord vs Ajax",
- "strEventAlternate": "Ajax @ Feyenoord",
- "strFilename": "Dutch Eredivisie 2026-11-29 Feyenoord vs Ajax",
+ "idEvent": "2268276",
+ "idAPIfootball": "1380990",
+ "strTimestamp": "2025-11-30T13:30:00",
+ "strEvent": "SC Telstar vs Feyenoord",
+ "strEventAlternate": "Feyenoord @ SC Telstar",
+ "strFilename": "Dutch Eredivisie 2025-11-30 SC Telstar vs Feyenoord",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Feyenoord",
- "strAwayTeam": "Ajax",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "SC Telstar",
+ "strAwayTeam": "Feyenoord",
+ "intHomeScore": "1",
"intRound": "14",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133758",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
- "idAwayTeam": "133772",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "dateEvent": "2025-11-30",
+ "dateEventLocal": "2025-11-30",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "138004",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "idAwayTeam": "133758",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15855",
- "strVenue": "Stadion Feyenoord",
+ "strResult": "",
+ "idVenue": "17957",
+ "strVenue": "711 Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qdddna1769670823.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/khqbmr1750407323.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489190",
- "idAPIfootball": "1552239",
- "strTimestamp": "2026-11-29T16:00:00",
- "strEvent": "NEC Nijmegen vs Twente",
- "strEventAlternate": "Twente @ NEC Nijmegen",
- "strFilename": "Dutch Eredivisie 2026-11-29 NEC Nijmegen vs Twente",
+ "idEvent": "2268277",
+ "idAPIfootball": "1380991",
+ "strTimestamp": "2025-11-30T15:45:00",
+ "strEvent": "Twente vs AZ Alkmaar",
+ "strEventAlternate": "AZ Alkmaar @ Twente",
+ "strFilename": "Dutch Eredivisie 2025-11-30 Twente vs AZ Alkmaar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "NEC Nijmegen",
- "strAwayTeam": "Twente",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Twente",
+ "strAwayTeam": "AZ Alkmaar",
+ "intHomeScore": "1",
"intRound": "14",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133760",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
- "idAwayTeam": "133774",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "dateEvent": "2025-11-30",
+ "dateEventLocal": "2025-11-30",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133774",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "idAwayTeam": "133767",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17971",
- "strVenue": "Goffertstadion",
+ "strResult": "",
+ "idVenue": "15859",
+ "strVenue": "De Grolsch Veste",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/alkxsj1750407327.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489191",
- "idAPIfootball": "1552234",
- "strTimestamp": "2026-11-29T16:00:00",
- "strEvent": "Cambuur vs Sparta Rotterdam",
- "strEventAlternate": "Sparta Rotterdam @ Cambuur",
- "strFilename": "Dutch Eredivisie 2026-11-29 Cambuur vs Sparta Rotterdam",
+ "idEvent": "2268270",
+ "idAPIfootball": "1380984",
+ "strTimestamp": "2025-12-02T13:30:00",
+ "strEvent": "Ajax vs Groningen",
+ "strEventAlternate": "Groningen @ Ajax",
+ "strFilename": "Dutch Eredivisie 2025-12-02 Ajax vs Groningen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Cambuur",
- "strAwayTeam": "Sparta Rotterdam",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Ajax",
+ "strAwayTeam": "Groningen",
+ "intHomeScore": "2",
"intRound": "14",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134303",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
- "idAwayTeam": "133866",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "dateEvent": "2025-12-02",
+ "dateEventLocal": "2025-11-30",
+ "strTime": "13:30:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133772",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "idAwayTeam": "133762",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "34141",
- "strVenue": "Kooi Stadion",
+ "strResult": "",
+ "idVenue": "21448",
+ "strVenue": "Johan Cruijff ArenA",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mr1jfj1769670754.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489192",
- "idAPIfootball": "1552243",
- "strTimestamp": "2026-12-06T16:00:00",
- "strEvent": "Ajax vs Utrecht",
- "strEventAlternate": "Utrecht @ Ajax",
- "strFilename": "Dutch Eredivisie 2026-12-06 Ajax vs Utrecht",
+ "idEvent": "2268280",
+ "idAPIfootball": "1380994",
+ "strTimestamp": "2025-12-05T19:00:00",
+ "strEvent": "Excelsior vs Groningen",
+ "strEventAlternate": "Groningen @ Excelsior",
+ "strFilename": "Dutch Eredivisie 2025-12-05 Excelsior vs Groningen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Ajax",
- "strAwayTeam": "Utrecht",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Excelsior",
+ "strAwayTeam": "Groningen",
+ "intHomeScore": "0",
"intRound": "15",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133772",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
- "idAwayTeam": "133764",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "dateEvent": "2025-12-05",
+ "dateEventLocal": "2025-12-05",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133757",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "idAwayTeam": "133762",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21448",
- "strVenue": "Johan Cruijff ArenA",
+ "strResult": "",
+ "idVenue": "15862",
+ "strVenue": "Van Donge and De Roo Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/btoi4e1769670860.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vxrhdp1750407334.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489193",
- "idAPIfootball": "1552251",
- "strTimestamp": "2026-12-06T16:00:00",
- "strEvent": "Willem II vs Feyenoord",
- "strEventAlternate": "Feyenoord @ Willem II",
- "strFilename": "Dutch Eredivisie 2026-12-06 Willem II vs Feyenoord",
+ "idEvent": "2268282",
+ "idAPIfootball": "1380996",
+ "strTimestamp": "2025-12-06T20:00:00",
+ "strEvent": "Feyenoord vs PEC Zwolle",
+ "strEventAlternate": "PEC Zwolle @ Feyenoord",
+ "strFilename": "Dutch Eredivisie 2025-12-06 Feyenoord vs PEC Zwolle",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Willem II",
- "strAwayTeam": "Feyenoord",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Feyenoord",
+ "strAwayTeam": "PEC Zwolle",
+ "intHomeScore": "6",
"intRound": "15",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133827",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
- "idAwayTeam": "133758",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "dateEvent": "2025-12-06",
+ "dateEventLocal": "2025-12-06",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133758",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "idAwayTeam": "133936",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15856",
- "strVenue": "Koning Willem II Stadion",
+ "strResult": "",
+ "idVenue": "15855",
+ "strVenue": "Stadion Feyenoord",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/tn74bg1625514189.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4oo0v41770369800.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489194",
- "idAPIfootball": "1552245",
- "strTimestamp": "2026-12-06T16:00:00",
- "strEvent": "ADO Den Haag vs Excelsior",
- "strEventAlternate": "Excelsior @ ADO Den Haag",
- "strFilename": "Dutch Eredivisie 2026-12-06 ADO Den Haag vs Excelsior",
+ "idEvent": "2268283",
+ "idAPIfootball": "1380997",
+ "strTimestamp": "2025-12-06T15:30:00",
+ "strEvent": "Heerenveen vs PSV Eindhoven",
+ "strEventAlternate": "PSV Eindhoven @ Heerenveen",
+ "strFilename": "Dutch Eredivisie 2025-12-06 Heerenveen vs PSV Eindhoven",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "ADO Den Haag",
- "strAwayTeam": "Excelsior",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heerenveen",
+ "strAwayTeam": "PSV Eindhoven",
+ "intHomeScore": "0",
"intRound": "15",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133769",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
- "idAwayTeam": "133757",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "dateEvent": "2025-12-06",
+ "dateEventLocal": "2025-12-06",
+ "strTime": "15:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133759",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "idAwayTeam": "133768",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15843",
- "strVenue": "Cars Jeans Stadion",
+ "strResult": "",
+ "idVenue": "15861",
+ "strVenue": "Abe Lenstra Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/eahxwi1716274514.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/uwezna1750407338.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489195",
- "idAPIfootball": "1552244",
- "strTimestamp": "2026-12-06T16:00:00",
- "strEvent": "AZ Alkmaar vs PSV Eindhoven",
- "strEventAlternate": "PSV Eindhoven @ AZ Alkmaar",
- "strFilename": "Dutch Eredivisie 2026-12-06 AZ Alkmaar vs PSV Eindhoven",
+ "idEvent": "2268284",
+ "idAPIfootball": "1380998",
+ "strTimestamp": "2025-12-06T19:00:00",
+ "strEvent": "Heracles Almelo vs SC Telstar",
+ "strEventAlternate": "SC Telstar @ Heracles Almelo",
+ "strFilename": "Dutch Eredivisie 2025-12-06 Heracles Almelo vs SC Telstar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "AZ Alkmaar",
- "strAwayTeam": "PSV Eindhoven",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heracles Almelo",
+ "strAwayTeam": "SC Telstar",
+ "intHomeScore": "1",
"intRound": "15",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133767",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
- "idAwayTeam": "133768",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "dateEvent": "2025-12-06",
+ "dateEventLocal": "2025-12-06",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133766",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
+ "idAwayTeam": "138004",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15860",
- "strVenue": "AFAS Stadion Alkmaar",
+ "strResult": "",
+ "idVenue": "18584",
+ "strVenue": "Asito Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8yo69z1770369777.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/rwpo1i1750407342.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489196",
- "idAPIfootball": "1552248",
- "strTimestamp": "2026-12-06T16:00:00",
- "strEvent": "Fortuna Sittard vs PEC Zwolle",
- "strEventAlternate": "PEC Zwolle @ Fortuna Sittard",
- "strFilename": "Dutch Eredivisie 2026-12-06 Fortuna Sittard vs PEC Zwolle",
+ "idEvent": "2268285",
+ "idAPIfootball": "1380999",
+ "strTimestamp": "2025-12-06T17:45:00",
+ "strEvent": "Fortuna Sittard vs Ajax",
+ "strEventAlternate": "Ajax @ Fortuna Sittard",
+ "strFilename": "Dutch Eredivisie 2025-12-06 Fortuna Sittard vs Ajax",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Fortuna Sittard",
- "strAwayTeam": "PEC Zwolle",
- "intHomeScore": null,
+ "strAwayTeam": "Ajax",
+ "intHomeScore": "1",
"intRound": "15",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2025-12-06",
+ "dateEventLocal": "2025-12-06",
+ "strTime": "17:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
"idHomeTeam": "134264",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
- "idAwayTeam": "133936",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "133772",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "18441",
"strVenue": "Fortuna Sittard Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2atlja1770370001.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qnkh9b1769670775.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489197",
- "idAPIfootball": "1552247",
- "strTimestamp": "2026-12-06T16:00:00",
- "strEvent": "Heerenveen vs Cambuur",
- "strEventAlternate": "Cambuur @ Heerenveen",
- "strFilename": "Dutch Eredivisie 2026-12-06 Heerenveen vs Cambuur",
+ "idEvent": "2268279",
+ "idAPIfootball": "1380993",
+ "strTimestamp": "2025-12-07T13:30:00",
+ "strEvent": "AZ Alkmaar vs Go Ahead Eagles",
+ "strEventAlternate": "Go Ahead Eagles @ AZ Alkmaar",
+ "strFilename": "Dutch Eredivisie 2025-12-07 AZ Alkmaar vs Go Ahead Eagles",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Heerenveen",
- "strAwayTeam": "Cambuur",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "AZ Alkmaar",
+ "strAwayTeam": "Go Ahead Eagles",
+ "intHomeScore": "2",
"intRound": "15",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133759",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
- "idAwayTeam": "134303",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
+ "dateEvent": "2025-12-07",
+ "dateEventLocal": "2025-12-07",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133767",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "idAwayTeam": "134304",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15861",
- "strVenue": "Abe Lenstra Stadion",
+ "strResult": "",
+ "idVenue": "15860",
+ "strVenue": "AFAS Stadion Alkmaar",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/w066051770369792.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489198",
- "idAPIfootball": "1552246",
- "strTimestamp": "2026-12-06T16:00:00",
- "strEvent": "Go Ahead Eagles vs Twente",
- "strEventAlternate": "Twente @ Go Ahead Eagles",
- "strFilename": "Dutch Eredivisie 2026-12-06 Go Ahead Eagles vs Twente",
+ "idEvent": "2268281",
+ "idAPIfootball": "1380995",
+ "strTimestamp": "2025-12-07T13:30:00",
+ "strEvent": "FC Volendam vs NEC Nijmegen",
+ "strEventAlternate": "NEC Nijmegen @ FC Volendam",
+ "strFilename": "Dutch Eredivisie 2025-12-07 FC Volendam vs NEC Nijmegen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Go Ahead Eagles",
- "strAwayTeam": "Twente",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "FC Volendam",
+ "strAwayTeam": "NEC Nijmegen",
+ "intHomeScore": "2",
"intRound": "15",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134304",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
- "idAwayTeam": "133774",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "dateEvent": "2025-12-07",
+ "dateEventLocal": "2025-12-07",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133867",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
+ "idAwayTeam": "133760",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17966",
- "strVenue": "De Adelaarshorst",
+ "strResult": "",
+ "idVenue": "17969",
+ "strVenue": "Kras Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kqoz781770369796.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489199",
- "idAPIfootball": "1552249",
- "strTimestamp": "2026-12-06T16:00:00",
- "strEvent": "Sparta Rotterdam vs NEC Nijmegen",
- "strEventAlternate": "NEC Nijmegen @ Sparta Rotterdam",
- "strFilename": "Dutch Eredivisie 2026-12-06 Sparta Rotterdam vs NEC Nijmegen",
+ "idEvent": "2268286",
+ "idAPIfootball": "1381000",
+ "strTimestamp": "2025-12-07T15:45:00",
+ "strEvent": "Sparta Rotterdam vs NAC Breda",
+ "strEventAlternate": "NAC Breda @ Sparta Rotterdam",
+ "strFilename": "Dutch Eredivisie 2025-12-07 Sparta Rotterdam vs NAC Breda",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Sparta Rotterdam",
- "strAwayTeam": "NEC Nijmegen",
- "intHomeScore": null,
+ "strAwayTeam": "NAC Breda",
+ "intHomeScore": "1",
"intRound": "15",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2025-12-07",
+ "dateEventLocal": "2025-12-07",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
"idHomeTeam": "133866",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
- "idAwayTeam": "133760",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "idAwayTeam": "133773",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "18581",
"strVenue": "Spartastadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ppeh091750407346.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489200",
- "idAPIfootball": "1552250",
- "strTimestamp": "2026-12-06T16:00:00",
- "strEvent": "Telstar vs Groningen",
- "strEventAlternate": "Groningen @ Telstar",
- "strFilename": "Dutch Eredivisie 2026-12-06 Telstar vs Groningen",
+ "idEvent": "2268287",
+ "idAPIfootball": "1381001",
+ "strTimestamp": "2025-12-07T11:15:00",
+ "strEvent": "Utrecht vs Twente",
+ "strEventAlternate": "Twente @ Utrecht",
+ "strFilename": "Dutch Eredivisie 2025-12-07 Utrecht vs Twente",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Telstar",
- "strAwayTeam": "Groningen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Utrecht",
+ "strAwayTeam": "Twente",
+ "intHomeScore": "1",
"intRound": "15",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-06",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "138004",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
- "idAwayTeam": "133762",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "dateEvent": "2025-12-07",
+ "dateEventLocal": "2025-12-07",
+ "strTime": "11:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133764",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "idAwayTeam": "133774",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17957",
- "strVenue": "711 Stadion",
+ "strResult": "",
+ "idVenue": "15864",
+ "strVenue": "Stadion Galgenwaard",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0oecq11750407349.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489201",
- "idAPIfootball": "1552260",
- "strTimestamp": "2026-12-13T16:00:00",
- "strEvent": "PEC Zwolle vs Excelsior",
- "strEventAlternate": "Excelsior @ PEC Zwolle",
- "strFilename": "Dutch Eredivisie 2026-12-13 PEC Zwolle vs Excelsior",
+ "idEvent": "2268290",
+ "idAPIfootball": "1381004",
+ "strTimestamp": "2025-12-13T17:45:00",
+ "strEvent": "Groningen vs FC Volendam",
+ "strEventAlternate": "FC Volendam @ Groningen",
+ "strFilename": "Dutch Eredivisie 2025-12-13 Groningen vs FC Volendam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PEC Zwolle",
- "strAwayTeam": "Excelsior",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Groningen",
+ "strAwayTeam": "FC Volendam",
+ "intHomeScore": "3",
"intRound": "16",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133936",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
- "idAwayTeam": "133757",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "dateEvent": "2025-12-13",
+ "dateEventLocal": "2025-12-13",
+ "strTime": "17:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133762",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "idAwayTeam": "133867",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18579",
- "strVenue": "MAC³PARK Stadion",
+ "strResult": "",
+ "idVenue": "21331",
+ "strVenue": "Euroborg",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4qb83q1770369948.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ovj5rb1750407353.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489202",
- "idAPIfootball": "1552252",
- "strTimestamp": "2026-12-13T16:00:00",
- "strEvent": "Ajax vs Cambuur",
- "strEventAlternate": "Cambuur @ Ajax",
- "strFilename": "Dutch Eredivisie 2026-12-13 Ajax vs Cambuur",
+ "idEvent": "2268292",
+ "idAPIfootball": "1381006",
+ "strTimestamp": "2025-12-13T19:00:00",
+ "strEvent": "PSV Eindhoven vs Heracles Almelo",
+ "strEventAlternate": "Heracles Almelo @ PSV Eindhoven",
+ "strFilename": "Dutch Eredivisie 2025-12-13 PSV Eindhoven vs Heracles Almelo",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Ajax",
- "strAwayTeam": "Cambuur",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PSV Eindhoven",
+ "strAwayTeam": "Heracles Almelo",
+ "intHomeScore": "4",
"intRound": "16",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133772",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
- "idAwayTeam": "134303",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
+ "dateEvent": "2025-12-13",
+ "dateEventLocal": "2025-12-13",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133768",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "idAwayTeam": "133766",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21448",
- "strVenue": "Johan Cruijff ArenA",
+ "strResult": "",
+ "idVenue": "15844",
+ "strVenue": "Philips Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xjur821750407360.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489203",
- "idAPIfootball": "1552259",
- "strTimestamp": "2026-12-13T16:00:00",
- "strEvent": "Willem II vs ADO Den Haag",
- "strEventAlternate": "ADO Den Haag @ Willem II",
- "strFilename": "Dutch Eredivisie 2026-12-13 Willem II vs ADO Den Haag",
+ "idEvent": "2268294",
+ "idAPIfootball": "1381008",
+ "strTimestamp": "2025-12-13T15:30:00",
+ "strEvent": "SC Telstar vs NEC Nijmegen",
+ "strEventAlternate": "NEC Nijmegen @ SC Telstar",
+ "strFilename": "Dutch Eredivisie 2025-12-13 SC Telstar vs NEC Nijmegen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Willem II",
- "strAwayTeam": "ADO Den Haag",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "SC Telstar",
+ "strAwayTeam": "NEC Nijmegen",
+ "intHomeScore": "2",
"intRound": "16",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133827",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
- "idAwayTeam": "133769",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "dateEvent": "2025-12-13",
+ "dateEventLocal": "2025-12-13",
+ "strTime": "15:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "138004",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "idAwayTeam": "133760",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15856",
- "strVenue": "Koning Willem II Stadion",
+ "strResult": "",
+ "idVenue": "17957",
+ "strVenue": "711 Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/nqto221601658878.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/182s4t1750407368.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489204",
- "idAPIfootball": "1552256",
- "strTimestamp": "2026-12-13T16:00:00",
- "strEvent": "PSV Eindhoven vs Telstar",
- "strEventAlternate": "Telstar @ PSV Eindhoven",
- "strFilename": "Dutch Eredivisie 2026-12-13 PSV Eindhoven vs Telstar",
+ "idEvent": "2268296",
+ "idAPIfootball": "1381010",
+ "strTimestamp": "2025-12-13T20:00:00",
+ "strEvent": "PEC Zwolle vs Fortuna Sittard",
+ "strEventAlternate": "Fortuna Sittard @ PEC Zwolle",
+ "strFilename": "Dutch Eredivisie 2025-12-13 PEC Zwolle vs Fortuna Sittard",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PSV Eindhoven",
- "strAwayTeam": "Telstar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PEC Zwolle",
+ "strAwayTeam": "Fortuna Sittard",
+ "intHomeScore": "1",
"intRound": "16",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133768",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
- "idAwayTeam": "138004",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "dateEvent": "2025-12-13",
+ "dateEventLocal": "2025-12-13",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133936",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "134264",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15844",
- "strVenue": "Philips Stadion",
+ "strResult": "",
+ "idVenue": "18579",
+ "strVenue": "MAC³PARK Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/veousx1770369843.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489205",
- "idAPIfootball": "1552253",
- "strTimestamp": "2026-12-13T16:00:00",
- "strEvent": "AZ Alkmaar vs NEC Nijmegen",
- "strEventAlternate": "NEC Nijmegen @ AZ Alkmaar",
- "strFilename": "Dutch Eredivisie 2026-12-13 AZ Alkmaar vs NEC Nijmegen",
+ "idEvent": "2268288",
+ "idAPIfootball": "1381002",
+ "strTimestamp": "2025-12-14T13:30:00",
+ "strEvent": "Ajax vs Feyenoord",
+ "strEventAlternate": "Feyenoord @ Ajax",
+ "strFilename": "Dutch Eredivisie 2025-12-14 Ajax vs Feyenoord",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "AZ Alkmaar",
- "strAwayTeam": "NEC Nijmegen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Ajax",
+ "strAwayTeam": "Feyenoord",
+ "intHomeScore": "2",
"intRound": "16",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133767",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
- "idAwayTeam": "133760",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "dateEvent": "2025-12-14",
+ "dateEventLocal": "2025-12-14",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133772",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "idAwayTeam": "133758",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15860",
- "strVenue": "AFAS Stadion Alkmaar",
+ "strResult": "",
+ "idVenue": "21448",
+ "strVenue": "Johan Cruijff ArenA",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/sasrzh1770369873.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/u56v7i1769670779.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489206",
- "idAPIfootball": "1552254",
- "strTimestamp": "2026-12-13T16:00:00",
- "strEvent": "Groningen vs Feyenoord",
- "strEventAlternate": "Feyenoord @ Groningen",
- "strFilename": "Dutch Eredivisie 2026-12-13 Groningen vs Feyenoord",
+ "idEvent": "2268291",
+ "idAPIfootball": "1381005",
+ "strTimestamp": "2025-12-14T15:45:00",
+ "strEvent": "NAC Breda vs Utrecht",
+ "strEventAlternate": "Utrecht @ NAC Breda",
+ "strFilename": "Dutch Eredivisie 2025-12-14 NAC Breda vs Utrecht",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Groningen",
- "strAwayTeam": "Feyenoord",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NAC Breda",
+ "strAwayTeam": "Utrecht",
+ "intHomeScore": "1",
"intRound": "16",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133762",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
- "idAwayTeam": "133758",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "dateEvent": "2025-12-14",
+ "dateEventLocal": "2025-12-14",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133773",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
+ "idAwayTeam": "133764",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21331",
- "strVenue": "Euroborg",
+ "strResult": "",
+ "idVenue": "15866",
+ "strVenue": "Rat Verlegh Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/u3kdhw1750407357.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489207",
- "idAPIfootball": "1552258",
- "strTimestamp": "2026-12-13T16:00:00",
- "strEvent": "Utrecht vs Fortuna Sittard",
- "strEventAlternate": "Fortuna Sittard @ Utrecht",
- "strFilename": "Dutch Eredivisie 2026-12-13 Utrecht vs Fortuna Sittard",
+ "idEvent": "2268293",
+ "idAPIfootball": "1381007",
+ "strTimestamp": "2025-12-14T11:15:00",
+ "strEvent": "Sparta Rotterdam vs Heerenveen",
+ "strEventAlternate": "Heerenveen @ Sparta Rotterdam",
+ "strFilename": "Dutch Eredivisie 2025-12-14 Sparta Rotterdam vs Heerenveen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Utrecht",
- "strAwayTeam": "Fortuna Sittard",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Sparta Rotterdam",
+ "strAwayTeam": "Heerenveen",
+ "intHomeScore": "0",
"intRound": "16",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133764",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
- "idAwayTeam": "134264",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "dateEvent": "2025-12-14",
+ "dateEventLocal": "2025-12-14",
+ "strTime": "11:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133866",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "idAwayTeam": "133759",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15864",
- "strVenue": "Stadion Galgenwaard",
+ "strResult": "",
+ "idVenue": "18581",
+ "strVenue": "Spartastadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ws0nmf1750407364.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489208",
- "idAPIfootball": "1552255",
- "strTimestamp": "2026-12-13T16:00:00",
- "strEvent": "Heerenveen vs Go Ahead Eagles",
- "strEventAlternate": "Go Ahead Eagles @ Heerenveen",
- "strFilename": "Dutch Eredivisie 2026-12-13 Heerenveen vs Go Ahead Eagles",
+ "idEvent": "2268295",
+ "idAPIfootball": "1381009",
+ "strTimestamp": "2025-12-14T13:30:00",
+ "strEvent": "Twente vs Go Ahead Eagles",
+ "strEventAlternate": "Go Ahead Eagles @ Twente",
+ "strFilename": "Dutch Eredivisie 2025-12-14 Twente vs Go Ahead Eagles",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Heerenveen",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Twente",
"strAwayTeam": "Go Ahead Eagles",
- "intHomeScore": null,
+ "intHomeScore": "2",
"intRound": "16",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133759",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "dateEvent": "2025-12-14",
+ "dateEventLocal": "2025-12-14",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133774",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
"idAwayTeam": "134304",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15861",
- "strVenue": "Abe Lenstra Stadion",
+ "strResult": "",
+ "idVenue": "15859",
+ "strVenue": "De Grolsch Veste",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/n0d5vr1750407372.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489209",
- "idAPIfootball": "1552257",
- "strTimestamp": "2026-12-13T16:00:00",
- "strEvent": "Twente vs Sparta Rotterdam",
- "strEventAlternate": "Sparta Rotterdam @ Twente",
- "strFilename": "Dutch Eredivisie 2026-12-13 Twente vs Sparta Rotterdam",
+ "idEvent": "2268289",
+ "idAPIfootball": "1381003",
+ "strTimestamp": "2026-01-21T17:45:00",
+ "strEvent": "AZ Alkmaar vs Excelsior",
+ "strEventAlternate": "Excelsior @ AZ Alkmaar",
+ "strFilename": "Dutch Eredivisie 2026-01-21 AZ Alkmaar vs Excelsior",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Twente",
- "strAwayTeam": "Sparta Rotterdam",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "AZ Alkmaar",
+ "strAwayTeam": "Excelsior",
+ "intHomeScore": "1",
"intRound": "16",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-13",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133774",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
- "idAwayTeam": "133866",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "dateEvent": "2026-01-21",
+ "dateEventLocal": "2026-01-21",
+ "strTime": "17:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133767",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "idAwayTeam": "133757",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15859",
- "strVenue": "De Grolsch Veste",
+ "strResult": "",
+ "idVenue": "15860",
+ "strVenue": "AFAS Stadion Alkmaar",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/e6iebx1770369821.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489210",
- "idAPIfootball": "1552262",
- "strTimestamp": "2026-12-20T16:00:00",
- "strEvent": "Excelsior vs AZ Alkmaar",
- "strEventAlternate": "AZ Alkmaar @ Excelsior",
- "strFilename": "Dutch Eredivisie 2026-12-20 Excelsior vs AZ Alkmaar",
+ "idEvent": "2268297",
+ "idAPIfootball": "1381011",
+ "strTimestamp": "2025-12-20T17:45:00",
+ "strEvent": "Excelsior vs PEC Zwolle",
+ "strEventAlternate": "PEC Zwolle @ Excelsior",
+ "strFilename": "Dutch Eredivisie 2025-12-20 Excelsior vs PEC Zwolle",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Excelsior",
- "strAwayTeam": "AZ Alkmaar",
- "intHomeScore": null,
+ "strAwayTeam": "PEC Zwolle",
+ "intHomeScore": "2",
"intRound": "17",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2025-12-20",
+ "dateEventLocal": "2025-12-20",
+ "strTime": "17:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
"idHomeTeam": "133757",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
- "idAwayTeam": "133767",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "idAwayTeam": "133936",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "15862",
"strVenue": "Van Donge and De Roo Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4hozdw1770369888.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/eor29o1770369847.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489211",
- "idAPIfootball": "1552266",
- "strTimestamp": "2026-12-20T16:00:00",
- "strEvent": "PSV Eindhoven vs PEC Zwolle",
- "strEventAlternate": "PEC Zwolle @ PSV Eindhoven",
- "strFilename": "Dutch Eredivisie 2026-12-20 PSV Eindhoven vs PEC Zwolle",
+ "idEvent": "2268301",
+ "idAPIfootball": "1381015",
+ "strTimestamp": "2025-12-20T15:30:00",
+ "strEvent": "Heracles Almelo vs Heerenveen",
+ "strEventAlternate": "Heerenveen @ Heracles Almelo",
+ "strFilename": "Dutch Eredivisie 2025-12-20 Heracles Almelo vs Heerenveen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PSV Eindhoven",
- "strAwayTeam": "PEC Zwolle",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heracles Almelo",
+ "strAwayTeam": "Heerenveen",
+ "intHomeScore": "0",
"intRound": "17",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133768",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
- "idAwayTeam": "133936",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "dateEvent": "2025-12-20",
+ "dateEventLocal": "2025-12-20",
+ "strTime": "15:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133766",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
+ "idAwayTeam": "133759",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15844",
- "strVenue": "Philips Stadion",
+ "strResult": "",
+ "idVenue": "18584",
+ "strVenue": "Asito Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xn77we1770369973.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9ateuo1750407387.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489212",
- "idAPIfootball": "1552267",
- "strTimestamp": "2026-12-20T16:00:00",
- "strEvent": "Fortuna Sittard vs Sparta Rotterdam",
- "strEventAlternate": "Sparta Rotterdam @ Fortuna Sittard",
- "strFilename": "Dutch Eredivisie 2026-12-20 Fortuna Sittard vs Sparta Rotterdam",
+ "idEvent": "2268302",
+ "idAPIfootball": "1381016",
+ "strTimestamp": "2025-12-20T20:00:00",
+ "strEvent": "NAC Breda vs SC Telstar",
+ "strEventAlternate": "SC Telstar @ NAC Breda",
+ "strFilename": "Dutch Eredivisie 2025-12-20 NAC Breda vs SC Telstar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Fortuna Sittard",
- "strAwayTeam": "Sparta Rotterdam",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NAC Breda",
+ "strAwayTeam": "SC Telstar",
+ "intHomeScore": "0",
"intRound": "17",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134264",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
- "idAwayTeam": "133866",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "dateEvent": "2025-12-20",
+ "dateEventLocal": "2025-12-20",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133773",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
+ "idAwayTeam": "138004",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18441",
- "strVenue": "Fortuna Sittard Stadion",
+ "strResult": "",
+ "idVenue": "15866",
+ "strVenue": "Rat Verlegh Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/wbim521750407391.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489213",
- "idAPIfootball": "1552269",
- "strTimestamp": "2026-12-20T16:00:00",
- "strEvent": "Utrecht vs Heerenveen",
- "strEventAlternate": "Heerenveen @ Utrecht",
- "strFilename": "Dutch Eredivisie 2026-12-20 Utrecht vs Heerenveen",
+ "idEvent": "2268303",
+ "idAPIfootball": "1381017",
+ "strTimestamp": "2025-12-20T19:00:00",
+ "strEvent": "NEC Nijmegen vs Ajax",
+ "strEventAlternate": "Ajax @ NEC Nijmegen",
+ "strFilename": "Dutch Eredivisie 2025-12-20 NEC Nijmegen vs Ajax",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Utrecht",
- "strAwayTeam": "Heerenveen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NEC Nijmegen",
+ "strAwayTeam": "Ajax",
+ "intHomeScore": "2",
"intRound": "17",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133764",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
- "idAwayTeam": "133759",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "dateEvent": "2025-12-20",
+ "dateEventLocal": "2025-12-20",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133760",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "idAwayTeam": "133772",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15864",
- "strVenue": "Stadion Galgenwaard",
+ "strResult": "",
+ "idVenue": "17971",
+ "strVenue": "Goffertstadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/gx9wq51779346196.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jlkz2t1769670783.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489214",
- "idAPIfootball": "1552263",
- "strTimestamp": "2026-12-20T16:00:00",
- "strEvent": "Feyenoord vs Twente",
- "strEventAlternate": "Twente @ Feyenoord",
- "strFilename": "Dutch Eredivisie 2026-12-20 Feyenoord vs Twente",
+ "idEvent": "2268298",
+ "idAPIfootball": "1381012",
+ "strTimestamp": "2025-12-21T15:45:00",
+ "strEvent": "FC Volendam vs Sparta Rotterdam",
+ "strEventAlternate": "Sparta Rotterdam @ FC Volendam",
+ "strFilename": "Dutch Eredivisie 2025-12-21 FC Volendam vs Sparta Rotterdam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Feyenoord",
- "strAwayTeam": "Twente",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "FC Volendam",
+ "strAwayTeam": "Sparta Rotterdam",
+ "intHomeScore": "0",
"intRound": "17",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133758",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
- "idAwayTeam": "133774",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "dateEvent": "2025-12-21",
+ "dateEventLocal": "2025-12-21",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133867",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
+ "idAwayTeam": "133866",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15855",
- "strVenue": "Stadion Feyenoord",
+ "strResult": "",
+ "idVenue": "17969",
+ "strVenue": "Kras Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ghmwjw1750407375.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489215",
- "idAPIfootball": "1552264",
- "strTimestamp": "2026-12-20T16:00:00",
- "strEvent": "Go Ahead Eagles vs Ajax",
- "strEventAlternate": "Ajax @ Go Ahead Eagles",
- "strFilename": "Dutch Eredivisie 2026-12-20 Go Ahead Eagles vs Ajax",
+ "idEvent": "2268299",
+ "idAPIfootball": "1381013",
+ "strTimestamp": "2025-12-21T13:30:00",
+ "strEvent": "Feyenoord vs Twente",
+ "strEventAlternate": "Twente @ Feyenoord",
+ "strFilename": "Dutch Eredivisie 2025-12-21 Feyenoord vs Twente",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Go Ahead Eagles",
- "strAwayTeam": "Ajax",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Feyenoord",
+ "strAwayTeam": "Twente",
+ "intHomeScore": "1",
"intRound": "17",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134304",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
- "idAwayTeam": "133772",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "dateEvent": "2025-12-21",
+ "dateEventLocal": "2025-12-21",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133758",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "idAwayTeam": "133774",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17966",
- "strVenue": "De Adelaarshorst",
+ "strResult": "",
+ "idVenue": "15855",
+ "strVenue": "Stadion Feyenoord",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9v5u6p1769670692.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bjzzf61750407379.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489216",
- "idAPIfootball": "1552265",
- "strTimestamp": "2026-12-20T16:00:00",
- "strEvent": "NEC Nijmegen vs ADO Den Haag",
- "strEventAlternate": "ADO Den Haag @ NEC Nijmegen",
- "strFilename": "Dutch Eredivisie 2026-12-20 NEC Nijmegen vs ADO Den Haag",
+ "idEvent": "2268300",
+ "idAPIfootball": "1381014",
+ "strTimestamp": "2025-12-21T13:30:00",
+ "strEvent": "Go Ahead Eagles vs Groningen",
+ "strEventAlternate": "Groningen @ Go Ahead Eagles",
+ "strFilename": "Dutch Eredivisie 2025-12-21 Go Ahead Eagles vs Groningen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "NEC Nijmegen",
- "strAwayTeam": "ADO Den Haag",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Go Ahead Eagles",
+ "strAwayTeam": "Groningen",
+ "intHomeScore": "1",
"intRound": "17",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133760",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
- "idAwayTeam": "133769",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "dateEvent": "2025-12-21",
+ "dateEventLocal": "2025-12-21",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "134304",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "idAwayTeam": "133762",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17971",
- "strVenue": "Goffertstadion",
+ "strResult": "",
+ "idVenue": "17966",
+ "strVenue": "De Adelaarshorst",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7sx0jn1750407383.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489217",
- "idAPIfootball": "1552261",
- "strTimestamp": "2026-12-20T16:00:00",
- "strEvent": "Cambuur vs Groningen",
- "strEventAlternate": "Groningen @ Cambuur",
- "strFilename": "Dutch Eredivisie 2026-12-20 Cambuur vs Groningen",
+ "idEvent": "2268304",
+ "idAPIfootball": "1381018",
+ "strTimestamp": "2025-12-21T15:45:00",
+ "strEvent": "Fortuna Sittard vs AZ Alkmaar",
+ "strEventAlternate": "AZ Alkmaar @ Fortuna Sittard",
+ "strFilename": "Dutch Eredivisie 2025-12-21 Fortuna Sittard vs AZ Alkmaar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Cambuur",
- "strAwayTeam": "Groningen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Fortuna Sittard",
+ "strAwayTeam": "AZ Alkmaar",
+ "intHomeScore": "4",
"intRound": "17",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134303",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
- "idAwayTeam": "133762",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "dateEvent": "2025-12-21",
+ "dateEventLocal": "2025-12-21",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "134264",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "idAwayTeam": "133767",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "34141",
- "strVenue": "Kooi Stadion",
+ "strResult": "",
+ "idVenue": "18441",
+ "strVenue": "Fortuna Sittard Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8kmqfc1770369851.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489218",
- "idAPIfootball": "1552268",
- "strTimestamp": "2026-12-20T16:00:00",
- "strEvent": "Telstar vs Willem II",
- "strEventAlternate": "Willem II @ Telstar",
- "strFilename": "Dutch Eredivisie 2026-12-20 Telstar vs Willem II",
+ "idEvent": "2268305",
+ "idAPIfootball": "1381019",
+ "strTimestamp": "2025-12-21T11:15:00",
+ "strEvent": "Utrecht vs PSV Eindhoven",
+ "strEventAlternate": "PSV Eindhoven @ Utrecht",
+ "strFilename": "Dutch Eredivisie 2025-12-21 Utrecht vs PSV Eindhoven",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Telstar",
- "strAwayTeam": "Willem II",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Utrecht",
+ "strAwayTeam": "PSV Eindhoven",
+ "intHomeScore": "1",
"intRound": "17",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2026-12-20",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "138004",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
- "idAwayTeam": "133827",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
+ "dateEvent": "2025-12-21",
+ "dateEventLocal": "2025-12-21",
+ "strTime": "11:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133764",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "idAwayTeam": "133768",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17957",
- "strVenue": "711 Stadion",
+ "strResult": "",
+ "idVenue": "15864",
+ "strVenue": "Stadion Galgenwaard",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fin20o1750407395.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489219",
- "idAPIfootball": "1552270",
- "strTimestamp": "2027-01-08T19:00:00",
- "strEvent": "Twente vs Fortuna Sittard",
- "strEventAlternate": "Fortuna Sittard @ Twente",
- "strFilename": "Dutch Eredivisie 2027-01-08 Twente vs Fortuna Sittard",
+ "idEvent": "2268306",
+ "idAPIfootball": "1381020",
+ "strTimestamp": "2026-01-10T15:30:00",
+ "strEvent": "AZ Alkmaar vs FC Volendam",
+ "strEventAlternate": "FC Volendam @ AZ Alkmaar",
+ "strFilename": "Dutch Eredivisie 2026-01-10 AZ Alkmaar vs FC Volendam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Twente",
- "strAwayTeam": "Fortuna Sittard",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "AZ Alkmaar",
+ "strAwayTeam": "FC Volendam",
+ "intHomeScore": "1",
"intRound": "18",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-08",
- "dateEventLocal": null,
- "strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133774",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
- "idAwayTeam": "134264",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "dateEvent": "2026-01-10",
+ "dateEventLocal": "2026-01-10",
+ "strTime": "15:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133767",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "idAwayTeam": "133867",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15859",
- "strVenue": "De Grolsch Veste",
+ "strResult": "",
+ "idVenue": "15860",
+ "strVenue": "AFAS Stadion Alkmaar",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/okyg2l1689170500.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489220",
- "idAPIfootball": "1552271",
- "strTimestamp": "2027-01-09T15:30:00",
- "strEvent": "Sparta Rotterdam vs Excelsior",
- "strEventAlternate": "Excelsior @ Sparta Rotterdam",
- "strFilename": "Dutch Eredivisie 2027-01-09 Sparta Rotterdam vs Excelsior",
+ "idEvent": "2268308",
+ "idAPIfootball": "1381022",
+ "strTimestamp": "2026-01-10T20:00:00",
+ "strEvent": "Groningen vs NAC Breda",
+ "strEventAlternate": "NAC Breda @ Groningen",
+ "strFilename": "Dutch Eredivisie 2026-01-10 Groningen vs NAC Breda",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Sparta Rotterdam",
- "strAwayTeam": "Excelsior",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Groningen",
+ "strAwayTeam": "NAC Breda",
+ "intHomeScore": "0",
"intRound": "18",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-09",
- "dateEventLocal": null,
- "strTime": "15:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133866",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
- "idAwayTeam": "133757",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "dateEvent": "2026-01-10",
+ "dateEventLocal": "2026-01-10",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133762",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "idAwayTeam": "133773",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18581",
- "strVenue": "Spartastadion",
+ "strResult": "",
+ "idVenue": "21331",
+ "strVenue": "Euroborg",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jup85h1750407416.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489221",
- "idAPIfootball": "1552272",
- "strTimestamp": "2027-01-09T17:45:00",
- "strEvent": "PEC Zwolle vs Utrecht",
- "strEventAlternate": "Utrecht @ PEC Zwolle",
- "strFilename": "Dutch Eredivisie 2027-01-09 PEC Zwolle vs Utrecht",
+ "idEvent": "2268311",
+ "idAPIfootball": "1381025",
+ "strTimestamp": "2026-01-10T19:00:00",
+ "strEvent": "PSV Eindhoven vs Excelsior",
+ "strEventAlternate": "Excelsior @ PSV Eindhoven",
+ "strFilename": "Dutch Eredivisie 2026-01-10 PSV Eindhoven vs Excelsior",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PEC Zwolle",
- "strAwayTeam": "Utrecht",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PSV Eindhoven",
+ "strAwayTeam": "Excelsior",
+ "intHomeScore": "5",
"intRound": "18",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-09",
- "dateEventLocal": null,
- "strTime": "17:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133936",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
- "idAwayTeam": "133764",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "dateEvent": "2026-01-10",
+ "dateEventLocal": "2026-01-10",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133768",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "idAwayTeam": "133757",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18579",
- "strVenue": "MAC³PARK Stadion",
+ "strResult": "",
+ "idVenue": "15844",
+ "strVenue": "Philips Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/gjlwcq1770369858.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489222",
- "idAPIfootball": "1552273",
- "strTimestamp": "2027-01-09T19:00:00",
- "strEvent": "Willem II vs Ajax",
- "strEventAlternate": "Ajax @ Willem II",
- "strFilename": "Dutch Eredivisie 2027-01-09 Willem II vs Ajax",
+ "idEvent": "2268314",
+ "idAPIfootball": "1381028",
+ "strTimestamp": "2026-01-10T17:45:00",
+ "strEvent": "Twente vs PEC Zwolle",
+ "strEventAlternate": "PEC Zwolle @ Twente",
+ "strFilename": "Dutch Eredivisie 2026-01-10 Twente vs PEC Zwolle",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Willem II",
- "strAwayTeam": "Ajax",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Twente",
+ "strAwayTeam": "PEC Zwolle",
+ "intHomeScore": "1",
"intRound": "18",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-09",
- "dateEventLocal": null,
- "strTime": "19:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133827",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
- "idAwayTeam": "133772",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "dateEvent": "2026-01-10",
+ "dateEventLocal": "2026-01-10",
+ "strTime": "17:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133774",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "idAwayTeam": "133936",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15856",
- "strVenue": "Koning Willem II Stadion",
+ "strResult": "",
+ "idVenue": "15859",
+ "strVenue": "De Grolsch Veste",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ikk0rh1625514298.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pabjlw1750407436.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489223",
- "idAPIfootball": "1552274",
- "strTimestamp": "2027-01-09T20:00:00",
- "strEvent": "AZ Alkmaar vs Heerenveen",
- "strEventAlternate": "Heerenveen @ AZ Alkmaar",
- "strFilename": "Dutch Eredivisie 2027-01-09 AZ Alkmaar vs Heerenveen",
+ "idEvent": "2268307",
+ "idAPIfootball": "1381021",
+ "strTimestamp": "2026-01-11T13:30:00",
+ "strEvent": "Go Ahead Eagles vs Fortuna Sittard",
+ "strEventAlternate": "Fortuna Sittard @ Go Ahead Eagles",
+ "strFilename": "Dutch Eredivisie 2026-01-11 Go Ahead Eagles vs Fortuna Sittard",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "AZ Alkmaar",
- "strAwayTeam": "Heerenveen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Go Ahead Eagles",
+ "strAwayTeam": "Fortuna Sittard",
+ "intHomeScore": "2",
"intRound": "18",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-09",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133767",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
- "idAwayTeam": "133759",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "dateEvent": "2026-01-11",
+ "dateEventLocal": "2026-01-11",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "134304",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "idAwayTeam": "134264",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15860",
- "strVenue": "AFAS Stadion Alkmaar",
+ "strResult": "",
+ "idVenue": "17966",
+ "strVenue": "De Adelaarshorst",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1jxxj91770369854.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489224",
- "idAPIfootball": "1552275",
- "strTimestamp": "2027-01-10T11:15:00",
- "strEvent": "NEC Nijmegen vs Cambuur",
- "strEventAlternate": "Cambuur @ NEC Nijmegen",
- "strFilename": "Dutch Eredivisie 2027-01-10 NEC Nijmegen vs Cambuur",
+ "idEvent": "2268309",
+ "idAPIfootball": "1381023",
+ "strTimestamp": "2026-01-11T11:15:00",
+ "strEvent": "Heerenveen vs Feyenoord",
+ "strEventAlternate": "Feyenoord @ Heerenveen",
+ "strFilename": "Dutch Eredivisie 2026-01-11 Heerenveen vs Feyenoord",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "NEC Nijmegen",
- "strAwayTeam": "Cambuur",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heerenveen",
+ "strAwayTeam": "Feyenoord",
+ "intHomeScore": "2",
"intRound": "18",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-10",
- "dateEventLocal": null,
+ "dateEvent": "2026-01-11",
+ "dateEventLocal": "2026-01-11",
"strTime": "11:15:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133760",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
- "idAwayTeam": "134303",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133759",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "idAwayTeam": "133758",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17971",
- "strVenue": "Goffertstadion",
+ "strResult": "",
+ "idVenue": "15861",
+ "strVenue": "Abe Lenstra Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yucg8p1750407420.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489225",
- "idAPIfootball": "1552276",
- "strTimestamp": "2027-01-10T13:30:00",
- "strEvent": "ADO Den Haag vs Telstar",
- "strEventAlternate": "Telstar @ ADO Den Haag",
- "strFilename": "Dutch Eredivisie 2027-01-10 ADO Den Haag vs Telstar",
+ "idEvent": "2268312",
+ "idAPIfootball": "1381026",
+ "strTimestamp": "2026-01-11T15:45:00",
+ "strEvent": "Sparta Rotterdam vs Heracles Almelo",
+ "strEventAlternate": "Heracles Almelo @ Sparta Rotterdam",
+ "strFilename": "Dutch Eredivisie 2026-01-11 Sparta Rotterdam vs Heracles Almelo",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "ADO Den Haag",
- "strAwayTeam": "Telstar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Sparta Rotterdam",
+ "strAwayTeam": "Heracles Almelo",
+ "intHomeScore": "2",
"intRound": "18",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-10",
- "dateEventLocal": null,
- "strTime": "13:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133769",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
- "idAwayTeam": "138004",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "dateEvent": "2026-01-11",
+ "dateEventLocal": "2026-01-11",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133866",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "idAwayTeam": "133766",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15843",
- "strVenue": "Cars Jeans Stadion",
+ "strResult": "",
+ "idVenue": "18581",
+ "strVenue": "Spartastadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9f0tf71750407428.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489226",
- "idAPIfootball": "1552277",
- "strTimestamp": "2027-01-10T13:30:00",
- "strEvent": "Feyenoord vs PSV Eindhoven",
- "strEventAlternate": "PSV Eindhoven @ Feyenoord",
- "strFilename": "Dutch Eredivisie 2027-01-10 Feyenoord vs PSV Eindhoven",
+ "idEvent": "2268313",
+ "idAPIfootball": "1381027",
+ "strTimestamp": "2026-01-11T13:30:00",
+ "strEvent": "SC Telstar vs Ajax",
+ "strEventAlternate": "Ajax @ SC Telstar",
+ "strFilename": "Dutch Eredivisie 2026-01-11 SC Telstar vs Ajax",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Feyenoord",
- "strAwayTeam": "PSV Eindhoven",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "SC Telstar",
+ "strAwayTeam": "Ajax",
+ "intHomeScore": "2",
"intRound": "18",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-10",
- "dateEventLocal": null,
+ "dateEvent": "2026-01-11",
+ "dateEventLocal": "2026-01-11",
"strTime": "13:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133758",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
- "idAwayTeam": "133768",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "138004",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "idAwayTeam": "133772",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15855",
- "strVenue": "Stadion Feyenoord",
+ "strResult": "",
+ "idVenue": "17957",
+ "strVenue": "711 Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/y8mtcl1770369758.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qmwo2g1769670786.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489227",
- "idAPIfootball": "1552278",
- "strTimestamp": "2027-01-10T15:45:00",
- "strEvent": "Groningen vs Go Ahead Eagles",
- "strEventAlternate": "Go Ahead Eagles @ Groningen",
- "strFilename": "Dutch Eredivisie 2027-01-10 Groningen vs Go Ahead Eagles",
+ "idEvent": "2268310",
+ "idAPIfootball": "1381024",
+ "strTimestamp": "2026-02-11T20:00:00",
+ "strEvent": "NEC Nijmegen vs Utrecht",
+ "strEventAlternate": "Utrecht @ NEC Nijmegen",
+ "strFilename": "Dutch Eredivisie 2026-02-11 NEC Nijmegen vs Utrecht",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Groningen",
- "strAwayTeam": "Go Ahead Eagles",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NEC Nijmegen",
+ "strAwayTeam": "Utrecht",
+ "intHomeScore": "1",
"intRound": "18",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-10",
- "dateEventLocal": null,
- "strTime": "15:45:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133762",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
- "idAwayTeam": "134304",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "dateEvent": "2026-02-11",
+ "dateEventLocal": "2026-02-11",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133760",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "idAwayTeam": "133764",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21331",
- "strVenue": "Euroborg",
+ "strResult": "",
+ "idVenue": "17971",
+ "strVenue": "Goffertstadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bzhg421750407424.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489228",
- "idAPIfootball": "1552279",
- "strTimestamp": "2027-01-17T16:00:00",
- "strEvent": "Ajax vs Groningen",
- "strEventAlternate": "Groningen @ Ajax",
- "strFilename": "Dutch Eredivisie 2027-01-17 Ajax vs Groningen",
+ "idEvent": "2268315",
+ "idAPIfootball": "1381029",
+ "strTimestamp": "2026-01-17T15:30:00",
+ "strEvent": "Ajax vs Go Ahead Eagles",
+ "strEventAlternate": "Go Ahead Eagles @ Ajax",
+ "strFilename": "Dutch Eredivisie 2026-01-17 Ajax vs Go Ahead Eagles",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Ajax",
- "strAwayTeam": "Groningen",
- "intHomeScore": null,
+ "strAwayTeam": "Go Ahead Eagles",
+ "intHomeScore": "2",
"intRound": "19",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-17",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-01-17",
+ "dateEventLocal": "2026-01-17",
+ "strTime": "15:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
"idHomeTeam": "133772",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
- "idAwayTeam": "133762",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "idAwayTeam": "134304",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "21448",
"strVenue": "Johan Cruijff ArenA",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://www.thesportsdb.com/images/media/event/thumb/lmcibl1779346195.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/57h8ah1769670790.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489229",
- "idAPIfootball": "1552282",
- "strTimestamp": "2027-01-17T16:00:00",
- "strEvent": "Excelsior vs Feyenoord",
- "strEventAlternate": "Feyenoord @ Excelsior",
- "strFilename": "Dutch Eredivisie 2027-01-17 Excelsior vs Feyenoord",
+ "idEvent": "2268316",
+ "idAPIfootball": "1381030",
+ "strTimestamp": "2026-01-17T19:00:00",
+ "strEvent": "Excelsior vs SC Telstar",
+ "strEventAlternate": "SC Telstar @ Excelsior",
+ "strFilename": "Dutch Eredivisie 2026-01-17 Excelsior vs SC Telstar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Excelsior",
- "strAwayTeam": "Feyenoord",
- "intHomeScore": null,
+ "strAwayTeam": "SC Telstar",
+ "intHomeScore": "2",
"intRound": "19",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-17",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-01-17",
+ "dateEventLocal": "2026-01-17",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
"idHomeTeam": "133757",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
- "idAwayTeam": "133758",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "idAwayTeam": "138004",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "15862",
"strVenue": "Van Donge and De Roo Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/tfm89n1770369676.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/p2geik1750407439.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489230",
- "idAPIfootball": "1552281",
- "strTimestamp": "2027-01-17T16:00:00",
- "strEvent": "ADO Den Haag vs PEC Zwolle",
- "strEventAlternate": "PEC Zwolle @ ADO Den Haag",
- "strFilename": "Dutch Eredivisie 2027-01-17 ADO Den Haag vs PEC Zwolle",
+ "idEvent": "2268321",
+ "idAPIfootball": "1381035",
+ "strTimestamp": "2026-01-17T20:00:00",
+ "strEvent": "NAC Breda vs NEC Nijmegen",
+ "strEventAlternate": "NEC Nijmegen @ NAC Breda",
+ "strFilename": "Dutch Eredivisie 2026-01-17 NAC Breda vs NEC Nijmegen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "ADO Den Haag",
- "strAwayTeam": "PEC Zwolle",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NAC Breda",
+ "strAwayTeam": "NEC Nijmegen",
+ "intHomeScore": "3",
"intRound": "19",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-17",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133769",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
- "idAwayTeam": "133936",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "15843",
- "strVenue": "Cars Jeans Stadion",
+ "dateEvent": "2026-01-17",
+ "dateEventLocal": "2026-01-17",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133773",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
+ "idAwayTeam": "133760",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "intScore": null,
+ "intScoreVotes": null,
+ "strResult": "",
+ "idVenue": "15866",
+ "strVenue": "Rat Verlegh Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3v1a1t1601658833.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hysh7p1750407459.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489231",
- "idAPIfootball": "1552285",
- "strTimestamp": "2027-01-17T16:00:00",
+ "idEvent": "2268322",
+ "idAPIfootball": "1381036",
+ "strTimestamp": "2026-01-17T19:00:00",
"strEvent": "Fortuna Sittard vs PSV Eindhoven",
"strEventAlternate": "PSV Eindhoven @ Fortuna Sittard",
- "strFilename": "Dutch Eredivisie 2027-01-17 Fortuna Sittard vs PSV Eindhoven",
+ "strFilename": "Dutch Eredivisie 2026-01-17 Fortuna Sittard vs PSV Eindhoven",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Fortuna Sittard",
"strAwayTeam": "PSV Eindhoven",
- "intHomeScore": null,
+ "intHomeScore": "1",
"intRound": "19",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-17",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-01-17",
+ "dateEventLocal": "2026-01-17",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
"idHomeTeam": "134264",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"idAwayTeam": "133768",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "18441",
"strVenue": "Fortuna Sittard Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
"strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bs2zpd1770369862.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489232",
- "idAPIfootball": "1552287",
- "strTimestamp": "2027-01-17T16:00:00",
- "strEvent": "Utrecht vs Twente",
- "strEventAlternate": "Twente @ Utrecht",
- "strFilename": "Dutch Eredivisie 2027-01-17 Utrecht vs Twente",
+ "idEvent": "2268323",
+ "idAPIfootball": "1381037",
+ "strTimestamp": "2026-01-17T17:45:00",
+ "strEvent": "PEC Zwolle vs AZ Alkmaar",
+ "strEventAlternate": "AZ Alkmaar @ PEC Zwolle",
+ "strFilename": "Dutch Eredivisie 2026-01-17 PEC Zwolle vs AZ Alkmaar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Utrecht",
- "strAwayTeam": "Twente",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PEC Zwolle",
+ "strAwayTeam": "AZ Alkmaar",
+ "intHomeScore": "3",
"intRound": "19",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-17",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133764",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
- "idAwayTeam": "133774",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "dateEvent": "2026-01-17",
+ "dateEventLocal": "2026-01-17",
+ "strTime": "17:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133936",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "133767",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15864",
- "strVenue": "Stadion Galgenwaard",
+ "strResult": "",
+ "idVenue": "18579",
+ "strVenue": "MAC³PARK Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/au29xx1770369865.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489233",
- "idAPIfootball": "1552284",
- "strTimestamp": "2027-01-17T16:00:00",
- "strEvent": "Heerenveen vs Sparta Rotterdam",
- "strEventAlternate": "Sparta Rotterdam @ Heerenveen",
- "strFilename": "Dutch Eredivisie 2027-01-17 Heerenveen vs Sparta Rotterdam",
+ "idEvent": "2268317",
+ "idAPIfootball": "1381031",
+ "strTimestamp": "2026-01-18T13:30:00",
+ "strEvent": "FC Volendam vs Utrecht",
+ "strEventAlternate": "Utrecht @ FC Volendam",
+ "strFilename": "Dutch Eredivisie 2026-01-18 FC Volendam vs Utrecht",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Heerenveen",
- "strAwayTeam": "Sparta Rotterdam",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "FC Volendam",
+ "strAwayTeam": "Utrecht",
+ "intHomeScore": "2",
"intRound": "19",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-17",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133759",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
- "idAwayTeam": "133866",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "dateEvent": "2026-01-18",
+ "dateEventLocal": "2026-01-18",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133867",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
+ "idAwayTeam": "133764",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15861",
- "strVenue": "Abe Lenstra Stadion",
+ "strResult": "",
+ "idVenue": "17969",
+ "strVenue": "Kras Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0z38u91750407443.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489234",
- "idAPIfootball": "1552283",
- "strTimestamp": "2027-01-17T16:00:00",
- "strEvent": "Go Ahead Eagles vs AZ Alkmaar",
- "strEventAlternate": "AZ Alkmaar @ Go Ahead Eagles",
- "strFilename": "Dutch Eredivisie 2027-01-17 Go Ahead Eagles vs AZ Alkmaar",
+ "idEvent": "2268318",
+ "idAPIfootball": "1381032",
+ "strTimestamp": "2026-01-18T15:45:00",
+ "strEvent": "Feyenoord vs Sparta Rotterdam",
+ "strEventAlternate": "Sparta Rotterdam @ Feyenoord",
+ "strFilename": "Dutch Eredivisie 2026-01-18 Feyenoord vs Sparta Rotterdam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Go Ahead Eagles",
- "strAwayTeam": "AZ Alkmaar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Feyenoord",
+ "strAwayTeam": "Sparta Rotterdam",
+ "intHomeScore": "3",
"intRound": "19",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-17",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134304",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
- "idAwayTeam": "133767",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "dateEvent": "2026-01-18",
+ "dateEventLocal": "2026-01-18",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133758",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "idAwayTeam": "133866",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17966",
- "strVenue": "De Adelaarshorst",
+ "strResult": "",
+ "idVenue": "15855",
+ "strVenue": "Stadion Feyenoord",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8w8zqd1770369969.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1x4rwa1750407447.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489235",
- "idAPIfootball": "1552280",
- "strTimestamp": "2027-01-17T16:00:00",
- "strEvent": "Cambuur vs Willem II",
- "strEventAlternate": "Willem II @ Cambuur",
- "strFilename": "Dutch Eredivisie 2027-01-17 Cambuur vs Willem II",
+ "idEvent": "2268319",
+ "idAPIfootball": "1381033",
+ "strTimestamp": "2026-01-18T11:15:00",
+ "strEvent": "Heerenveen vs Groningen",
+ "strEventAlternate": "Groningen @ Heerenveen",
+ "strFilename": "Dutch Eredivisie 2026-01-18 Heerenveen vs Groningen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Cambuur",
- "strAwayTeam": "Willem II",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heerenveen",
+ "strAwayTeam": "Groningen",
+ "intHomeScore": "0",
"intRound": "19",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-17",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134303",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
- "idAwayTeam": "133827",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
+ "dateEvent": "2026-01-18",
+ "dateEventLocal": "2026-01-18",
+ "strTime": "11:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133759",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "idAwayTeam": "133762",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "34141",
- "strVenue": "Kooi Stadion",
+ "strResult": "",
+ "idVenue": "15861",
+ "strVenue": "Abe Lenstra Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ltbsla1750407451.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489236",
- "idAPIfootball": "1552286",
- "strTimestamp": "2027-01-17T16:00:00",
- "strEvent": "Telstar vs NEC Nijmegen",
- "strEventAlternate": "NEC Nijmegen @ Telstar",
- "strFilename": "Dutch Eredivisie 2027-01-17 Telstar vs NEC Nijmegen",
+ "idEvent": "2268320",
+ "idAPIfootball": "1381034",
+ "strTimestamp": "2026-01-18T13:30:00",
+ "strEvent": "Heracles Almelo vs Twente",
+ "strEventAlternate": "Twente @ Heracles Almelo",
+ "strFilename": "Dutch Eredivisie 2026-01-18 Heracles Almelo vs Twente",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Telstar",
- "strAwayTeam": "NEC Nijmegen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heracles Almelo",
+ "strAwayTeam": "Twente",
+ "intHomeScore": "0",
"intRound": "19",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-17",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "138004",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
- "idAwayTeam": "133760",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "dateEvent": "2026-01-18",
+ "dateEventLocal": "2026-01-18",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133766",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
+ "idAwayTeam": "133774",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17957",
- "strVenue": "711 Stadion",
+ "strResult": "",
+ "idVenue": "18584",
+ "strVenue": "Asito Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/foirbz1750407455.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489237",
- "idAPIfootball": "1552288",
- "strTimestamp": "2027-01-24T16:00:00",
- "strEvent": "Ajax vs Telstar",
- "strEventAlternate": "Telstar @ Ajax",
- "strFilename": "Dutch Eredivisie 2027-01-24 Ajax vs Telstar",
+ "idEvent": "2268324",
+ "idAPIfootball": "1381038",
+ "strTimestamp": "2026-01-24T15:30:00",
+ "strEvent": "Ajax vs FC Volendam",
+ "strEventAlternate": "FC Volendam @ Ajax",
+ "strFilename": "Dutch Eredivisie 2026-01-24 Ajax vs FC Volendam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Ajax",
- "strAwayTeam": "Telstar",
- "intHomeScore": null,
+ "strAwayTeam": "FC Volendam",
+ "intHomeScore": "2",
"intRound": "20",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-24",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-01-24",
+ "dateEventLocal": "2026-01-24",
+ "strTime": "15:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
"idHomeTeam": "133772",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
- "idAwayTeam": "138004",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "idAwayTeam": "133867",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "21448",
"strVenue": "Johan Cruijff ArenA",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hmoidw1769670794.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489238",
- "idAPIfootball": "1552290",
- "strTimestamp": "2027-01-24T16:00:00",
- "strEvent": "Excelsior vs Fortuna Sittard",
- "strEventAlternate": "Fortuna Sittard @ Excelsior",
- "strFilename": "Dutch Eredivisie 2027-01-24 Excelsior vs Fortuna Sittard",
+ "idEvent": "2268328",
+ "idAPIfootball": "1381042",
+ "strTimestamp": "2026-01-24T17:45:00",
+ "strEvent": "NEC Nijmegen vs PEC Zwolle",
+ "strEventAlternate": "PEC Zwolle @ NEC Nijmegen",
+ "strFilename": "Dutch Eredivisie 2026-01-24 NEC Nijmegen vs PEC Zwolle",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Excelsior",
- "strAwayTeam": "Fortuna Sittard",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NEC Nijmegen",
+ "strAwayTeam": "PEC Zwolle",
+ "intHomeScore": "2",
"intRound": "20",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-24",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133757",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
- "idAwayTeam": "134264",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "dateEvent": "2026-01-24",
+ "dateEventLocal": "2026-01-24",
+ "strTime": "17:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133760",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "idAwayTeam": "133936",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15862",
- "strVenue": "Van Donge and De Roo Stadion",
+ "strResult": "",
+ "idVenue": "17971",
+ "strVenue": "Goffertstadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/gdynav1770369751.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yb9eoz1770369869.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489239",
- "idAPIfootball": "1552294",
- "strTimestamp": "2027-01-24T16:00:00",
- "strEvent": "PSV Eindhoven vs ADO Den Haag",
- "strEventAlternate": "ADO Den Haag @ PSV Eindhoven",
- "strFilename": "Dutch Eredivisie 2027-01-24 PSV Eindhoven vs ADO Den Haag",
+ "idEvent": "2268329",
+ "idAPIfootball": "1381043",
+ "strTimestamp": "2026-01-24T19:00:00",
+ "strEvent": "PSV Eindhoven vs NAC Breda",
+ "strEventAlternate": "NAC Breda @ PSV Eindhoven",
+ "strFilename": "Dutch Eredivisie 2026-01-24 PSV Eindhoven vs NAC Breda",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "PSV Eindhoven",
- "strAwayTeam": "ADO Den Haag",
- "intHomeScore": null,
+ "strAwayTeam": "NAC Breda",
+ "intHomeScore": "2",
"intRound": "20",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-24",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-01-24",
+ "dateEventLocal": "2026-01-24",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
"idHomeTeam": "133768",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
- "idAwayTeam": "133769",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "idAwayTeam": "133773",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "15844",
"strVenue": "Philips Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/znfqwj1601658786.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/505mtn1750407474.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489240",
- "idAPIfootball": "1552289",
- "strTimestamp": "2027-01-24T16:00:00",
- "strEvent": "AZ Alkmaar vs Utrecht",
- "strEventAlternate": "Utrecht @ AZ Alkmaar",
- "strFilename": "Dutch Eredivisie 2027-01-24 AZ Alkmaar vs Utrecht",
+ "idEvent": "2268331",
+ "idAPIfootball": "1381045",
+ "strTimestamp": "2026-01-24T20:00:00",
+ "strEvent": "Twente vs Excelsior",
+ "strEventAlternate": "Excelsior @ Twente",
+ "strFilename": "Dutch Eredivisie 2026-01-24 Twente vs Excelsior",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "AZ Alkmaar",
- "strAwayTeam": "Utrecht",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Twente",
+ "strAwayTeam": "Excelsior",
+ "intHomeScore": "0",
"intRound": "20",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-24",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133767",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
- "idAwayTeam": "133764",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "dateEvent": "2026-01-24",
+ "dateEventLocal": "2026-01-24",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133774",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "idAwayTeam": "133757",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15860",
- "strVenue": "AFAS Stadion Alkmaar",
+ "strResult": "",
+ "idVenue": "15859",
+ "strVenue": "De Grolsch Veste",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/imjv7i1750407481.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489241",
- "idAPIfootball": "1552291",
- "strTimestamp": "2027-01-24T16:00:00",
- "strEvent": "Feyenoord vs PEC Zwolle",
- "strEventAlternate": "PEC Zwolle @ Feyenoord",
- "strFilename": "Dutch Eredivisie 2027-01-24 Feyenoord vs PEC Zwolle",
+ "idEvent": "2268325",
+ "idAPIfootball": "1381039",
+ "strTimestamp": "2026-01-25T15:45:00",
+ "strEvent": "Feyenoord vs Heracles Almelo",
+ "strEventAlternate": "Heracles Almelo @ Feyenoord",
+ "strFilename": "Dutch Eredivisie 2026-01-25 Feyenoord vs Heracles Almelo",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Feyenoord",
- "strAwayTeam": "PEC Zwolle",
- "intHomeScore": null,
+ "strAwayTeam": "Heracles Almelo",
+ "intHomeScore": "4",
"intRound": "20",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-24",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-01-25",
+ "dateEventLocal": "2026-01-25",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
"idHomeTeam": "133758",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
- "idAwayTeam": "133936",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "133766",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "15855",
"strVenue": "Stadion Feyenoord",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4oo0v41770369800.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0xs2zr1750407463.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489242",
- "idAPIfootball": "1552292",
- "strTimestamp": "2027-01-24T16:00:00",
- "strEvent": "Go Ahead Eagles vs Cambuur",
- "strEventAlternate": "Cambuur @ Go Ahead Eagles",
- "strFilename": "Dutch Eredivisie 2027-01-24 Go Ahead Eagles vs Cambuur",
+ "idEvent": "2268327",
+ "idAPIfootball": "1381041",
+ "strTimestamp": "2026-01-25T13:30:00",
+ "strEvent": "Groningen vs Fortuna Sittard",
+ "strEventAlternate": "Fortuna Sittard @ Groningen",
+ "strFilename": "Dutch Eredivisie 2026-01-25 Groningen vs Fortuna Sittard",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Go Ahead Eagles",
- "strAwayTeam": "Cambuur",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Groningen",
+ "strAwayTeam": "Fortuna Sittard",
+ "intHomeScore": "1",
"intRound": "20",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-24",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134304",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
- "idAwayTeam": "134303",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
+ "dateEvent": "2026-01-25",
+ "dateEventLocal": "2026-01-25",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133762",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "idAwayTeam": "134264",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17966",
- "strVenue": "De Adelaarshorst",
+ "strResult": "",
+ "idVenue": "21331",
+ "strVenue": "Euroborg",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ebcpiu1750407470.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489243",
- "idAPIfootball": "1552293",
- "strTimestamp": "2027-01-24T16:00:00",
- "strEvent": "NEC Nijmegen vs Willem II",
- "strEventAlternate": "Willem II @ NEC Nijmegen",
- "strFilename": "Dutch Eredivisie 2027-01-24 NEC Nijmegen vs Willem II",
+ "idEvent": "2268330",
+ "idAPIfootball": "1381044",
+ "strTimestamp": "2026-01-25T11:15:00",
+ "strEvent": "SC Telstar vs AZ Alkmaar",
+ "strEventAlternate": "AZ Alkmaar @ SC Telstar",
+ "strFilename": "Dutch Eredivisie 2026-01-25 SC Telstar vs AZ Alkmaar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "NEC Nijmegen",
- "strAwayTeam": "Willem II",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "SC Telstar",
+ "strAwayTeam": "AZ Alkmaar",
+ "intHomeScore": "0",
"intRound": "20",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-24",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133760",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
- "idAwayTeam": "133827",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
+ "dateEvent": "2026-01-25",
+ "dateEventLocal": "2026-01-25",
+ "strTime": "11:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "138004",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "idAwayTeam": "133767",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17971",
- "strVenue": "Goffertstadion",
+ "strResult": "",
+ "idVenue": "17957",
+ "strVenue": "711 Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yoi9pj1625514202.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/z0phqe1750407478.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489244",
- "idAPIfootball": "1552296",
- "strTimestamp": "2027-01-24T16:00:00",
- "strEvent": "Twente vs Heerenveen",
- "strEventAlternate": "Heerenveen @ Twente",
- "strFilename": "Dutch Eredivisie 2027-01-24 Twente vs Heerenveen",
+ "idEvent": "2268332",
+ "idAPIfootball": "1381046",
+ "strTimestamp": "2026-01-25T15:45:00",
+ "strEvent": "Utrecht vs Sparta Rotterdam",
+ "strEventAlternate": "Sparta Rotterdam @ Utrecht",
+ "strFilename": "Dutch Eredivisie 2026-01-25 Utrecht vs Sparta Rotterdam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Twente",
- "strAwayTeam": "Heerenveen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Utrecht",
+ "strAwayTeam": "Sparta Rotterdam",
+ "intHomeScore": "0",
"intRound": "20",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-24",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133774",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
- "idAwayTeam": "133759",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "dateEvent": "2026-01-25",
+ "dateEventLocal": "2026-01-25",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133764",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "idAwayTeam": "133866",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15859",
- "strVenue": "De Grolsch Veste",
+ "strResult": "",
+ "idVenue": "15864",
+ "strVenue": "Stadion Galgenwaard",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5et1q01750407485.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489245",
- "idAPIfootball": "1552295",
- "strTimestamp": "2027-01-24T16:00:00",
- "strEvent": "Sparta Rotterdam vs Groningen",
- "strEventAlternate": "Groningen @ Sparta Rotterdam",
- "strFilename": "Dutch Eredivisie 2027-01-24 Sparta Rotterdam vs Groningen",
+ "idEvent": "2268326",
+ "idAPIfootball": "1381040",
+ "strTimestamp": "2026-02-11T17:45:00",
+ "strEvent": "Go Ahead Eagles vs Heerenveen",
+ "strEventAlternate": "Heerenveen @ Go Ahead Eagles",
+ "strFilename": "Dutch Eredivisie 2026-02-11 Go Ahead Eagles vs Heerenveen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Sparta Rotterdam",
- "strAwayTeam": "Groningen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Go Ahead Eagles",
+ "strAwayTeam": "Heerenveen",
+ "intHomeScore": "1",
"intRound": "20",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-24",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133866",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
- "idAwayTeam": "133762",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "dateEvent": "2026-02-11",
+ "dateEventLocal": "2026-02-11",
+ "strTime": "17:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "134304",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "idAwayTeam": "133759",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18581",
- "strVenue": "Spartastadion",
+ "strResult": "",
+ "idVenue": "17966",
+ "strVenue": "De Adelaarshorst",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1s3g341750407466.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489246",
- "idAPIfootball": "1552305",
- "strTimestamp": "2027-01-31T16:00:00",
- "strEvent": "PEC Zwolle vs Fortuna Sittard",
- "strEventAlternate": "Fortuna Sittard @ PEC Zwolle",
- "strFilename": "Dutch Eredivisie 2027-01-31 PEC Zwolle vs Fortuna Sittard",
+ "idEvent": "2268338",
+ "idAPIfootball": "1381052",
+ "strTimestamp": "2026-01-30T19:00:00",
+ "strEvent": "NAC Breda vs Twente",
+ "strEventAlternate": "Twente @ NAC Breda",
+ "strFilename": "Dutch Eredivisie 2026-01-30 NAC Breda vs Twente",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PEC Zwolle",
- "strAwayTeam": "Fortuna Sittard",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NAC Breda",
+ "strAwayTeam": "Twente",
+ "intHomeScore": "2",
"intRound": "21",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-31",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133936",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
- "idAwayTeam": "134264",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "dateEvent": "2026-01-30",
+ "dateEventLocal": "2026-01-30",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133773",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
+ "idAwayTeam": "133774",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18579",
- "strVenue": "MAC³PARK Stadion",
+ "strResult": "",
+ "idVenue": "15866",
+ "strVenue": "Rat Verlegh Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/veousx1770369843.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4jcr6a1750407497.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489247",
- "idAPIfootball": "1552304",
- "strTimestamp": "2027-01-31T16:00:00",
- "strEvent": "Willem II vs PSV Eindhoven",
- "strEventAlternate": "PSV Eindhoven @ Willem II",
- "strFilename": "Dutch Eredivisie 2027-01-31 Willem II vs PSV Eindhoven",
+ "idEvent": "2268333",
+ "idAPIfootball": "1381047",
+ "strTimestamp": "2026-01-31T15:30:00",
+ "strEvent": "AZ Alkmaar vs NEC Nijmegen",
+ "strEventAlternate": "NEC Nijmegen @ AZ Alkmaar",
+ "strFilename": "Dutch Eredivisie 2026-01-31 AZ Alkmaar vs NEC Nijmegen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Willem II",
- "strAwayTeam": "PSV Eindhoven",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "AZ Alkmaar",
+ "strAwayTeam": "NEC Nijmegen",
+ "intHomeScore": "1",
"intRound": "21",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-31",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133827",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
- "idAwayTeam": "133768",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "dateEvent": "2026-01-31",
+ "dateEventLocal": "2026-01-31",
+ "strTime": "15:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133767",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "idAwayTeam": "133760",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15856",
- "strVenue": "Koning Willem II Stadion",
+ "strResult": "",
+ "idVenue": "15860",
+ "strVenue": "AFAS Stadion Alkmaar",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/w4gprx1625514215.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/sasrzh1770369873.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489248",
- "idAPIfootball": "1552298",
- "strTimestamp": "2027-01-31T16:00:00",
- "strEvent": "ADO Den Haag vs Go Ahead Eagles",
- "strEventAlternate": "Go Ahead Eagles @ ADO Den Haag",
- "strFilename": "Dutch Eredivisie 2027-01-31 ADO Den Haag vs Go Ahead Eagles",
+ "idEvent": "2268340",
+ "idAPIfootball": "1381054",
+ "strTimestamp": "2026-01-31T20:00:00",
+ "strEvent": "Sparta Rotterdam vs Groningen",
+ "strEventAlternate": "Groningen @ Sparta Rotterdam",
+ "strFilename": "Dutch Eredivisie 2026-01-31 Sparta Rotterdam vs Groningen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "ADO Den Haag",
- "strAwayTeam": "Go Ahead Eagles",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Sparta Rotterdam",
+ "strAwayTeam": "Groningen",
+ "intHomeScore": "2",
"intRound": "21",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-31",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133769",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
- "idAwayTeam": "134304",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "dateEvent": "2026-01-31",
+ "dateEventLocal": "2026-01-31",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133866",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "idAwayTeam": "133762",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15843",
- "strVenue": "Cars Jeans Stadion",
+ "strResult": "",
+ "idVenue": "18581",
+ "strVenue": "Spartastadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xn8vxj1750407500.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489249",
- "idAPIfootball": "1552297",
- "strTimestamp": "2027-01-31T16:00:00",
- "strEvent": "AZ Alkmaar vs Feyenoord",
- "strEventAlternate": "Feyenoord @ AZ Alkmaar",
- "strFilename": "Dutch Eredivisie 2027-01-31 AZ Alkmaar vs Feyenoord",
+ "idEvent": "2268341",
+ "idAPIfootball": "1381055",
+ "strTimestamp": "2026-01-31T17:45:00",
+ "strEvent": "PEC Zwolle vs SC Telstar",
+ "strEventAlternate": "SC Telstar @ PEC Zwolle",
+ "strFilename": "Dutch Eredivisie 2026-01-31 PEC Zwolle vs SC Telstar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "AZ Alkmaar",
- "strAwayTeam": "Feyenoord",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PEC Zwolle",
+ "strAwayTeam": "SC Telstar",
+ "intHomeScore": "4",
"intRound": "21",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-31",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133767",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
- "idAwayTeam": "133758",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "dateEvent": "2026-01-31",
+ "dateEventLocal": "2026-01-31",
+ "strTime": "17:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133936",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "138004",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15860",
- "strVenue": "AFAS Stadion Alkmaar",
+ "strResult": "",
+ "idVenue": "18579",
+ "strVenue": "MAC³PARK Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ht2usw1770369732.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/j08n2l1750407504.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489250",
- "idAPIfootball": "1552299",
- "strTimestamp": "2027-01-31T16:00:00",
- "strEvent": "Groningen vs NEC Nijmegen",
- "strEventAlternate": "NEC Nijmegen @ Groningen",
- "strFilename": "Dutch Eredivisie 2027-01-31 Groningen vs NEC Nijmegen",
+ "idEvent": "2268334",
+ "idAPIfootball": "1381048",
+ "strTimestamp": "2026-02-01T11:15:00",
+ "strEvent": "Excelsior vs Ajax",
+ "strEventAlternate": "Ajax @ Excelsior",
+ "strFilename": "Dutch Eredivisie 2026-02-01 Excelsior vs Ajax",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Groningen",
- "strAwayTeam": "NEC Nijmegen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Excelsior",
+ "strAwayTeam": "Ajax",
+ "intHomeScore": "2",
"intRound": "21",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-31",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133762",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
- "idAwayTeam": "133760",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "dateEvent": "2026-02-01",
+ "dateEventLocal": "2026-02-01",
+ "strTime": "11:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133757",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "idAwayTeam": "133772",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21331",
- "strVenue": "Euroborg",
+ "strResult": "",
+ "idVenue": "15862",
+ "strVenue": "Van Donge and De Roo Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/93mgjt1769670798.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489251",
- "idAPIfootball": "1552303",
- "strTimestamp": "2027-01-31T16:00:00",
- "strEvent": "Utrecht vs Excelsior",
- "strEventAlternate": "Excelsior @ Utrecht",
- "strFilename": "Dutch Eredivisie 2027-01-31 Utrecht vs Excelsior",
+ "idEvent": "2268335",
+ "idAPIfootball": "1381049",
+ "strTimestamp": "2026-02-01T19:00:00",
+ "strEvent": "FC Volendam vs Go Ahead Eagles",
+ "strEventAlternate": "Go Ahead Eagles @ FC Volendam",
+ "strFilename": "Dutch Eredivisie 2026-02-01 FC Volendam vs Go Ahead Eagles",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Utrecht",
- "strAwayTeam": "Excelsior",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "FC Volendam",
+ "strAwayTeam": "Go Ahead Eagles",
+ "intHomeScore": "1",
"intRound": "21",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-31",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133764",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
- "idAwayTeam": "133757",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "dateEvent": "2026-02-01",
+ "dateEventLocal": "2026-02-01",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133867",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
+ "idAwayTeam": "134304",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15864",
- "strVenue": "Stadion Galgenwaard",
+ "strResult": "",
+ "idVenue": "17969",
+ "strVenue": "Kras Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/n4v0mu1770369877.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489252",
- "idAPIfootball": "1552300",
- "strTimestamp": "2027-01-31T16:00:00",
- "strEvent": "Heerenveen vs Ajax",
- "strEventAlternate": "Ajax @ Heerenveen",
- "strFilename": "Dutch Eredivisie 2027-01-31 Heerenveen vs Ajax",
+ "idEvent": "2268336",
+ "idAPIfootball": "1381050",
+ "strTimestamp": "2026-02-01T15:45:00",
+ "strEvent": "Heerenveen vs Utrecht",
+ "strEventAlternate": "Utrecht @ Heerenveen",
+ "strFilename": "Dutch Eredivisie 2026-02-01 Heerenveen vs Utrecht",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Heerenveen",
- "strAwayTeam": "Ajax",
- "intHomeScore": null,
+ "strAwayTeam": "Utrecht",
+ "intHomeScore": "1",
"intRound": "21",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-31",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-02-01",
+ "dateEventLocal": "2026-02-01",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
"idHomeTeam": "133759",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
- "idAwayTeam": "133772",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "idAwayTeam": "133764",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "15861",
"strVenue": "Abe Lenstra Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zne8811769670863.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hvtfcr1750407489.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489253",
- "idAPIfootball": "1552302",
- "strTimestamp": "2027-01-31T16:00:00",
- "strEvent": "Twente vs Cambuur",
- "strEventAlternate": "Cambuur @ Twente",
- "strFilename": "Dutch Eredivisie 2027-01-31 Twente vs Cambuur",
+ "idEvent": "2268337",
+ "idAPIfootball": "1381051",
+ "strTimestamp": "2026-02-01T13:30:00",
+ "strEvent": "Heracles Almelo vs Fortuna Sittard",
+ "strEventAlternate": "Fortuna Sittard @ Heracles Almelo",
+ "strFilename": "Dutch Eredivisie 2026-02-01 Heracles Almelo vs Fortuna Sittard",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Twente",
- "strAwayTeam": "Cambuur",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heracles Almelo",
+ "strAwayTeam": "Fortuna Sittard",
+ "intHomeScore": "2",
"intRound": "21",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-31",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133774",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
- "idAwayTeam": "134303",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
+ "dateEvent": "2026-02-01",
+ "dateEventLocal": "2026-02-01",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133766",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
+ "idAwayTeam": "134264",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15859",
- "strVenue": "De Grolsch Veste",
+ "strResult": "",
+ "idVenue": "18584",
+ "strVenue": "Asito Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/u1n3qv1750407493.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489254",
- "idAPIfootball": "1552301",
- "strTimestamp": "2027-01-31T16:00:00",
- "strEvent": "Sparta Rotterdam vs Telstar",
- "strEventAlternate": "Telstar @ Sparta Rotterdam",
- "strFilename": "Dutch Eredivisie 2027-01-31 Sparta Rotterdam vs Telstar",
+ "idEvent": "2268339",
+ "idAPIfootball": "1381053",
+ "strTimestamp": "2026-02-01T13:30:00",
+ "strEvent": "PSV Eindhoven vs Feyenoord",
+ "strEventAlternate": "Feyenoord @ PSV Eindhoven",
+ "strFilename": "Dutch Eredivisie 2026-02-01 PSV Eindhoven vs Feyenoord",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Sparta Rotterdam",
- "strAwayTeam": "Telstar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PSV Eindhoven",
+ "strAwayTeam": "Feyenoord",
+ "intHomeScore": "3",
"intRound": "21",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-01-31",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133866",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
- "idAwayTeam": "138004",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "dateEvent": "2026-02-01",
+ "dateEventLocal": "2026-02-01",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133768",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "idAwayTeam": "133758",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18581",
- "strVenue": "Spartastadion",
+ "strResult": "",
+ "idVenue": "15844",
+ "strVenue": "Philips Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/g3j9ck1770369881.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489255",
- "idAPIfootball": "1552314",
- "strTimestamp": "2027-02-14T16:00:00",
- "strEvent": "Willem II vs Sparta Rotterdam",
- "strEventAlternate": "Sparta Rotterdam @ Willem II",
- "strFilename": "Dutch Eredivisie 2027-02-14 Willem II vs Sparta Rotterdam",
+ "idEvent": "2268345",
+ "idAPIfootball": "1381059",
+ "strTimestamp": "2026-02-06T19:00:00",
+ "strEvent": "NAC Breda vs Excelsior",
+ "strEventAlternate": "Excelsior @ NAC Breda",
+ "strFilename": "Dutch Eredivisie 2026-02-06 NAC Breda vs Excelsior",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Willem II",
- "strAwayTeam": "Sparta Rotterdam",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NAC Breda",
+ "strAwayTeam": "Excelsior",
+ "intHomeScore": "0",
"intRound": "22",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-14",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133827",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
- "idAwayTeam": "133866",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "dateEvent": "2026-02-06",
+ "dateEventLocal": "2026-02-06",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133773",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
+ "idAwayTeam": "133757",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15856",
- "strVenue": "Koning Willem II Stadion",
+ "strResult": "",
+ "idVenue": "15866",
+ "strVenue": "Rat Verlegh Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/k3if7g1770369884.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489256",
- "idAPIfootball": "1552307",
- "strTimestamp": "2027-02-14T16:00:00",
- "strEvent": "Excelsior vs Ajax",
- "strEventAlternate": "Ajax @ Excelsior",
- "strFilename": "Dutch Eredivisie 2027-02-14 Excelsior vs Ajax",
+ "idEvent": "2268346",
+ "idAPIfootball": "1381060",
+ "strTimestamp": "2026-02-07T15:30:00",
+ "strEvent": "NEC Nijmegen vs Heracles Almelo",
+ "strEventAlternate": "Heracles Almelo @ NEC Nijmegen",
+ "strFilename": "Dutch Eredivisie 2026-02-07 NEC Nijmegen vs Heracles Almelo",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Excelsior",
- "strAwayTeam": "Ajax",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NEC Nijmegen",
+ "strAwayTeam": "Heracles Almelo",
+ "intHomeScore": "4",
"intRound": "22",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-14",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133757",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
- "idAwayTeam": "133772",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "dateEvent": "2026-02-07",
+ "dateEventLocal": "2026-02-07",
+ "strTime": "15:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133760",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "idAwayTeam": "133766",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15862",
- "strVenue": "Van Donge and De Roo Stadion",
+ "strResult": "",
+ "idVenue": "17971",
+ "strVenue": "Goffertstadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/93mgjt1769670798.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/thz2ub1750407517.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489257",
- "idAPIfootball": "1552311",
- "strTimestamp": "2027-02-14T16:00:00",
- "strEvent": "PSV Eindhoven vs Twente",
- "strEventAlternate": "Twente @ PSV Eindhoven",
- "strFilename": "Dutch Eredivisie 2027-02-14 PSV Eindhoven vs Twente",
+ "idEvent": "2268347",
+ "idAPIfootball": "1381061",
+ "strTimestamp": "2026-02-07T20:00:00",
+ "strEvent": "Fortuna Sittard vs Sparta Rotterdam",
+ "strEventAlternate": "Sparta Rotterdam @ Fortuna Sittard",
+ "strFilename": "Dutch Eredivisie 2026-02-07 Fortuna Sittard vs Sparta Rotterdam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PSV Eindhoven",
- "strAwayTeam": "Twente",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Fortuna Sittard",
+ "strAwayTeam": "Sparta Rotterdam",
+ "intHomeScore": "2",
"intRound": "22",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-14",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133768",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
- "idAwayTeam": "133774",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "dateEvent": "2026-02-07",
+ "dateEventLocal": "2026-02-07",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134264",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "idAwayTeam": "133866",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15844",
- "strVenue": "Philips Stadion",
+ "strResult": "",
+ "idVenue": "18441",
+ "strVenue": "Fortuna Sittard Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/wly1f81750407520.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489258",
- "idAPIfootball": "1552310",
- "strTimestamp": "2027-02-14T16:00:00",
- "strEvent": "Groningen vs AZ Alkmaar",
- "strEventAlternate": "AZ Alkmaar @ Groningen",
- "strFilename": "Dutch Eredivisie 2027-02-14 Groningen vs AZ Alkmaar",
+ "idEvent": "2268348",
+ "idAPIfootball": "1381062",
+ "strTimestamp": "2026-02-07T19:00:00",
+ "strEvent": "Twente vs Heerenveen",
+ "strEventAlternate": "Heerenveen @ Twente",
+ "strFilename": "Dutch Eredivisie 2026-02-07 Twente vs Heerenveen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Groningen",
- "strAwayTeam": "AZ Alkmaar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Twente",
+ "strAwayTeam": "Heerenveen",
+ "intHomeScore": "5",
"intRound": "22",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-14",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133762",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
- "idAwayTeam": "133767",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "dateEvent": "2026-02-07",
+ "dateEventLocal": "2026-02-07",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133774",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "idAwayTeam": "133759",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21331",
- "strVenue": "Euroborg",
+ "strResult": "",
+ "idVenue": "15859",
+ "strVenue": "De Grolsch Veste",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ek92wv1750407524.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489259",
- "idAPIfootball": "1552312",
- "strTimestamp": "2027-02-14T16:00:00",
- "strEvent": "Fortuna Sittard vs ADO Den Haag",
- "strEventAlternate": "ADO Den Haag @ Fortuna Sittard",
- "strFilename": "Dutch Eredivisie 2027-02-14 Fortuna Sittard vs ADO Den Haag",
+ "idEvent": "2268350",
+ "idAPIfootball": "1381064",
+ "strTimestamp": "2026-02-07T17:45:00",
+ "strEvent": "PEC Zwolle vs FC Volendam",
+ "strEventAlternate": "FC Volendam @ PEC Zwolle",
+ "strFilename": "Dutch Eredivisie 2026-02-07 PEC Zwolle vs FC Volendam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Fortuna Sittard",
- "strAwayTeam": "ADO Den Haag",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PEC Zwolle",
+ "strAwayTeam": "FC Volendam",
+ "intHomeScore": "1",
"intRound": "22",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-14",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134264",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
- "idAwayTeam": "133769",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "dateEvent": "2026-02-07",
+ "dateEventLocal": "2026-02-07",
+ "strTime": "17:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133936",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "133867",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18441",
- "strVenue": "Fortuna Sittard Stadion",
+ "strResult": "",
+ "idVenue": "18579",
+ "strVenue": "MAC³PARK Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/br9kf01601658888.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hsapo21750407532.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489260",
- "idAPIfootball": "1552308",
- "strTimestamp": "2027-02-14T16:00:00",
- "strEvent": "Feyenoord vs NEC Nijmegen",
- "strEventAlternate": "NEC Nijmegen @ Feyenoord",
- "strFilename": "Dutch Eredivisie 2027-02-14 Feyenoord vs NEC Nijmegen",
+ "idEvent": "2268342",
+ "idAPIfootball": "1381056",
+ "strTimestamp": "2026-02-08T13:30:00",
+ "strEvent": "AZ Alkmaar vs Ajax",
+ "strEventAlternate": "Ajax @ AZ Alkmaar",
+ "strFilename": "Dutch Eredivisie 2026-02-08 AZ Alkmaar vs Ajax",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Feyenoord",
- "strAwayTeam": "NEC Nijmegen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "AZ Alkmaar",
+ "strAwayTeam": "Ajax",
+ "intHomeScore": "1",
"intRound": "22",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-14",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133758",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
- "idAwayTeam": "133760",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "dateEvent": "2026-02-08",
+ "dateEventLocal": "2026-02-08",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133767",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "idAwayTeam": "133772",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15855",
- "strVenue": "Stadion Feyenoord",
+ "strResult": "",
+ "idVenue": "15860",
+ "strVenue": "AFAS Stadion Alkmaar",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kw39kn1770369785.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6o8ev41769670801.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489261",
- "idAPIfootball": "1552309",
- "strTimestamp": "2027-02-14T16:00:00",
- "strEvent": "Go Ahead Eagles vs PEC Zwolle",
- "strEventAlternate": "PEC Zwolle @ Go Ahead Eagles",
- "strFilename": "Dutch Eredivisie 2027-02-14 Go Ahead Eagles vs PEC Zwolle",
+ "idEvent": "2268343",
+ "idAPIfootball": "1381057",
+ "strTimestamp": "2026-02-08T13:30:00",
+ "strEvent": "Go Ahead Eagles vs SC Telstar",
+ "strEventAlternate": "SC Telstar @ Go Ahead Eagles",
+ "strFilename": "Dutch Eredivisie 2026-02-08 Go Ahead Eagles vs SC Telstar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Go Ahead Eagles",
- "strAwayTeam": "PEC Zwolle",
- "intHomeScore": null,
+ "strAwayTeam": "SC Telstar",
+ "intHomeScore": "1",
"intRound": "22",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-14",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-02-08",
+ "dateEventLocal": "2026-02-08",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
"idHomeTeam": "134304",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
- "idAwayTeam": "133936",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "138004",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "17966",
"strVenue": "De Adelaarshorst",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jhp3ah1770369940.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/tcy3mf1750407508.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489262",
- "idAPIfootball": "1552306",
- "strTimestamp": "2027-02-14T16:00:00",
- "strEvent": "Cambuur vs Utrecht",
- "strEventAlternate": "Utrecht @ Cambuur",
- "strFilename": "Dutch Eredivisie 2027-02-14 Cambuur vs Utrecht",
+ "idEvent": "2268344",
+ "idAPIfootball": "1381058",
+ "strTimestamp": "2026-02-08T15:45:00",
+ "strEvent": "Groningen vs PSV Eindhoven",
+ "strEventAlternate": "PSV Eindhoven @ Groningen",
+ "strFilename": "Dutch Eredivisie 2026-02-08 Groningen vs PSV Eindhoven",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Cambuur",
- "strAwayTeam": "Utrecht",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Groningen",
+ "strAwayTeam": "PSV Eindhoven",
+ "intHomeScore": "1",
"intRound": "22",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-14",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134303",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
- "idAwayTeam": "133764",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "dateEvent": "2026-02-08",
+ "dateEventLocal": "2026-02-08",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133762",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "idAwayTeam": "133768",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "34141",
- "strVenue": "Kooi Stadion",
+ "strResult": "",
+ "idVenue": "21331",
+ "strVenue": "Euroborg",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yvjjqb1750407513.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489263",
- "idAPIfootball": "1552313",
- "strTimestamp": "2027-02-14T16:00:00",
- "strEvent": "Telstar vs Heerenveen",
- "strEventAlternate": "Heerenveen @ Telstar",
- "strFilename": "Dutch Eredivisie 2027-02-14 Telstar vs Heerenveen",
+ "idEvent": "2268349",
+ "idAPIfootball": "1381063",
+ "strTimestamp": "2026-02-08T11:15:00",
+ "strEvent": "Utrecht vs Feyenoord",
+ "strEventAlternate": "Feyenoord @ Utrecht",
+ "strFilename": "Dutch Eredivisie 2026-02-08 Utrecht vs Feyenoord",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Telstar",
- "strAwayTeam": "Heerenveen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Utrecht",
+ "strAwayTeam": "Feyenoord",
+ "intHomeScore": "0",
"intRound": "22",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-14",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "138004",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
- "idAwayTeam": "133759",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "dateEvent": "2026-02-08",
+ "dateEventLocal": "2026-02-08",
+ "strTime": "11:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133764",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "idAwayTeam": "133758",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17957",
- "strVenue": "711 Stadion",
+ "strResult": "",
+ "idVenue": "15864",
+ "strVenue": "Stadion Galgenwaard",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bzkcys1750407528.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489264",
- "idAPIfootball": "1552323",
- "strTimestamp": "2027-02-21T16:00:00",
- "strEvent": "PEC Zwolle vs Groningen",
- "strEventAlternate": "Groningen @ PEC Zwolle",
- "strFilename": "Dutch Eredivisie 2027-02-21 PEC Zwolle vs Groningen",
+ "idEvent": "2268353",
+ "idAPIfootball": "1381067",
+ "strTimestamp": "2026-02-13T19:00:00",
+ "strEvent": "FC Volendam vs PSV Eindhoven",
+ "strEventAlternate": "PSV Eindhoven @ FC Volendam",
+ "strFilename": "Dutch Eredivisie 2026-02-13 FC Volendam vs PSV Eindhoven",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PEC Zwolle",
- "strAwayTeam": "Groningen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "FC Volendam",
+ "strAwayTeam": "PSV Eindhoven",
+ "intHomeScore": "2",
"intRound": "23",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133936",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
- "idAwayTeam": "133762",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "dateEvent": "2026-02-13",
+ "dateEventLocal": "2026-02-13",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133867",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
+ "idAwayTeam": "133768",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18579",
- "strVenue": "MAC³PARK Stadion",
+ "strResult": "",
+ "idVenue": "17969",
+ "strVenue": "Kras Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kvlyma1770369892.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489265",
- "idAPIfootball": "1552315",
- "strTimestamp": "2027-02-21T16:00:00",
- "strEvent": "Ajax vs Go Ahead Eagles",
- "strEventAlternate": "Go Ahead Eagles @ Ajax",
- "strFilename": "Dutch Eredivisie 2027-02-21 Ajax vs Go Ahead Eagles",
+ "idEvent": "2268351",
+ "idAPIfootball": "1381065",
+ "strTimestamp": "2026-02-14T19:00:00",
+ "strEvent": "Ajax vs Fortuna Sittard",
+ "strEventAlternate": "Fortuna Sittard @ Ajax",
+ "strFilename": "Dutch Eredivisie 2026-02-14 Ajax vs Fortuna Sittard",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Ajax",
- "strAwayTeam": "Go Ahead Eagles",
- "intHomeScore": null,
+ "strAwayTeam": "Fortuna Sittard",
+ "intHomeScore": "4",
"intRound": "23",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-02-14",
+ "dateEventLocal": "2026-02-14",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
"idHomeTeam": "133772",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
- "idAwayTeam": "134304",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "idAwayTeam": "134264",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "21448",
"strVenue": "Johan Cruijff ArenA",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/57h8ah1769670790.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/x6h4931769670805.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489266",
- "idAPIfootball": "1552320",
- "strTimestamp": "2027-02-21T16:00:00",
- "strEvent": "PSV Eindhoven vs Cambuur",
- "strEventAlternate": "Cambuur @ PSV Eindhoven",
- "strFilename": "Dutch Eredivisie 2027-02-21 PSV Eindhoven vs Cambuur",
+ "idEvent": "2268352",
+ "idAPIfootball": "1381066",
+ "strTimestamp": "2026-02-14T17:45:00",
+ "strEvent": "Excelsior vs AZ Alkmaar",
+ "strEventAlternate": "AZ Alkmaar @ Excelsior",
+ "strFilename": "Dutch Eredivisie 2026-02-14 Excelsior vs AZ Alkmaar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PSV Eindhoven",
- "strAwayTeam": "Cambuur",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Excelsior",
+ "strAwayTeam": "AZ Alkmaar",
+ "intHomeScore": "1",
"intRound": "23",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133768",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
- "idAwayTeam": "134303",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
+ "dateEvent": "2026-02-14",
+ "dateEventLocal": "2026-02-14",
+ "strTime": "17:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133757",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "idAwayTeam": "133767",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15844",
- "strVenue": "Philips Stadion",
+ "strResult": "",
+ "idVenue": "15862",
+ "strVenue": "Van Donge and De Roo Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4hozdw1770369888.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489267",
- "idAPIfootball": "1552316",
- "strTimestamp": "2027-02-21T16:00:00",
- "strEvent": "AZ Alkmaar vs Fortuna Sittard",
- "strEventAlternate": "Fortuna Sittard @ AZ Alkmaar",
- "strFilename": "Dutch Eredivisie 2027-02-21 AZ Alkmaar vs Fortuna Sittard",
+ "idEvent": "2268355",
+ "idAPIfootball": "1381069",
+ "strTimestamp": "2026-02-14T20:00:00",
+ "strEvent": "Groningen vs Utrecht",
+ "strEventAlternate": "Utrecht @ Groningen",
+ "strFilename": "Dutch Eredivisie 2026-02-14 Groningen vs Utrecht",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "AZ Alkmaar",
- "strAwayTeam": "Fortuna Sittard",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Groningen",
+ "strAwayTeam": "Utrecht",
+ "intHomeScore": "1",
"intRound": "23",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133767",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
- "idAwayTeam": "134264",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "dateEvent": "2026-02-14",
+ "dateEventLocal": "2026-02-14",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133762",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "idAwayTeam": "133764",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15860",
- "strVenue": "AFAS Stadion Alkmaar",
+ "strResult": "",
+ "idVenue": "21331",
+ "strVenue": "Euroborg",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bjcin81770369929.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5eunoe1750407535.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489268",
- "idAPIfootball": "1552322",
- "strTimestamp": "2027-02-21T16:00:00",
- "strEvent": "Utrecht vs ADO Den Haag",
- "strEventAlternate": "ADO Den Haag @ Utrecht",
- "strFilename": "Dutch Eredivisie 2027-02-21 Utrecht vs ADO Den Haag",
+ "idEvent": "2268357",
+ "idAPIfootball": "1381071",
+ "strTimestamp": "2026-02-14T15:30:00",
+ "strEvent": "Heracles Almelo vs NAC Breda",
+ "strEventAlternate": "NAC Breda @ Heracles Almelo",
+ "strFilename": "Dutch Eredivisie 2026-02-14 Heracles Almelo vs NAC Breda",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Utrecht",
- "strAwayTeam": "ADO Den Haag",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heracles Almelo",
+ "strAwayTeam": "NAC Breda",
+ "intHomeScore": "0",
"intRound": "23",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133764",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
- "idAwayTeam": "133769",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "dateEvent": "2026-02-14",
+ "dateEventLocal": "2026-02-14",
+ "strTime": "15:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133766",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
+ "idAwayTeam": "133773",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15864",
- "strVenue": "Stadion Galgenwaard",
+ "strResult": "",
+ "idVenue": "18584",
+ "strVenue": "Asito Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/720fqo1750407543.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489269",
- "idAPIfootball": "1552317",
- "strTimestamp": "2027-02-21T16:00:00",
- "strEvent": "Feyenoord vs Telstar",
- "strEventAlternate": "Telstar @ Feyenoord",
- "strFilename": "Dutch Eredivisie 2027-02-21 Feyenoord vs Telstar",
+ "idEvent": "2268354",
+ "idAPIfootball": "1381068",
+ "strTimestamp": "2026-02-15T11:15:00",
+ "strEvent": "Feyenoord vs Go Ahead Eagles",
+ "strEventAlternate": "Go Ahead Eagles @ Feyenoord",
+ "strFilename": "Dutch Eredivisie 2026-02-15 Feyenoord vs Go Ahead Eagles",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Feyenoord",
- "strAwayTeam": "Telstar",
- "intHomeScore": null,
+ "strAwayTeam": "Go Ahead Eagles",
+ "intHomeScore": "1",
"intRound": "23",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-02-15",
+ "dateEventLocal": "2026-02-15",
+ "strTime": "11:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
"idHomeTeam": "133758",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
- "idAwayTeam": "138004",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "idAwayTeam": "134304",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "15855",
"strVenue": "Stadion Feyenoord",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/j361bj1770369895.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489270",
- "idAPIfootball": "1552318",
- "strTimestamp": "2027-02-21T16:00:00",
- "strEvent": "Heerenveen vs Willem II",
- "strEventAlternate": "Willem II @ Heerenveen",
- "strFilename": "Dutch Eredivisie 2027-02-21 Heerenveen vs Willem II",
+ "idEvent": "2268356",
+ "idAPIfootball": "1381070",
+ "strTimestamp": "2026-02-15T13:30:00",
+ "strEvent": "Heerenveen vs PEC Zwolle",
+ "strEventAlternate": "PEC Zwolle @ Heerenveen",
+ "strFilename": "Dutch Eredivisie 2026-02-15 Heerenveen vs PEC Zwolle",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Heerenveen",
- "strAwayTeam": "Willem II",
- "intHomeScore": null,
+ "strAwayTeam": "PEC Zwolle",
+ "intHomeScore": "4",
"intRound": "23",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-02-15",
+ "dateEventLocal": "2026-02-15",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
"idHomeTeam": "133759",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
- "idAwayTeam": "133827",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
+ "idAwayTeam": "133936",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "15861",
"strVenue": "Abe Lenstra Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/u5nygn1750407539.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489271",
- "idAPIfootball": "1552319",
- "strTimestamp": "2027-02-21T16:00:00",
- "strEvent": "NEC Nijmegen vs Sparta Rotterdam",
- "strEventAlternate": "Sparta Rotterdam @ NEC Nijmegen",
- "strFilename": "Dutch Eredivisie 2027-02-21 NEC Nijmegen vs Sparta Rotterdam",
+ "idEvent": "2268359",
+ "idAPIfootball": "1381073",
+ "strTimestamp": "2026-02-15T13:30:00",
+ "strEvent": "SC Telstar vs Twente",
+ "strEventAlternate": "Twente @ SC Telstar",
+ "strFilename": "Dutch Eredivisie 2026-02-15 SC Telstar vs Twente",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "NEC Nijmegen",
- "strAwayTeam": "Sparta Rotterdam",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "SC Telstar",
+ "strAwayTeam": "Twente",
+ "intHomeScore": "1",
"intRound": "23",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133760",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
- "idAwayTeam": "133866",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "dateEvent": "2026-02-15",
+ "dateEventLocal": "2026-02-15",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "138004",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "idAwayTeam": "133774",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17971",
- "strVenue": "Goffertstadion",
+ "strResult": "",
+ "idVenue": "17957",
+ "strVenue": "711 Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pwja3c1750407550.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489272",
- "idAPIfootball": "1552321",
- "strTimestamp": "2027-02-21T16:00:00",
- "strEvent": "Twente vs Excelsior",
- "strEventAlternate": "Excelsior @ Twente",
- "strFilename": "Dutch Eredivisie 2027-02-21 Twente vs Excelsior",
+ "idEvent": "2268358",
+ "idAPIfootball": "1381072",
+ "strTimestamp": "2026-02-17T19:00:00",
+ "strEvent": "Sparta Rotterdam vs NEC Nijmegen",
+ "strEventAlternate": "NEC Nijmegen @ Sparta Rotterdam",
+ "strFilename": "Dutch Eredivisie 2026-02-17 Sparta Rotterdam vs NEC Nijmegen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Twente",
- "strAwayTeam": "Excelsior",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Sparta Rotterdam",
+ "strAwayTeam": "NEC Nijmegen",
+ "intHomeScore": "1",
"intRound": "23",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133774",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "dateEvent": "2026-02-17",
+ "dateEventLocal": "2026-02-16",
+ "strTime": "19:00:00",
+ "strTimeLocal": "19:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133866",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "idAwayTeam": "133760",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "intScore": null,
+ "intScoreVotes": null,
+ "strResult": "",
+ "idVenue": "18581",
+ "strVenue": "Spartastadion",
+ "strCountry": "The Netherlands",
+ "strCity": "",
+ "strPoster": "",
+ "strSquare": "",
+ "strFanart": null,
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/brotw71750407547.jpg",
+ "strBanner": "",
+ "strMap": null,
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
+ "strPostponed": "no",
+ "strLocked": "unlocked"
+ },
+ {
+ "idEvent": "2268366",
+ "idAPIfootball": "1381080",
+ "strTimestamp": "2026-02-20T19:00:00",
+ "strEvent": "Fortuna Sittard vs Excelsior",
+ "strEventAlternate": "Excelsior @ Fortuna Sittard",
+ "strFilename": "Dutch Eredivisie 2026-02-20 Fortuna Sittard vs Excelsior",
+ "strSport": "Soccer",
+ "idLeague": "4337",
+ "strLeague": "Dutch Eredivisie",
+ "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Fortuna Sittard",
+ "strAwayTeam": "Excelsior",
+ "intHomeScore": "2",
+ "intRound": "24",
+ "intAwayScore": "1",
+ "intSpectators": null,
+ "strOfficial": "",
+ "strWeather": null,
+ "dateEvent": "2026-02-20",
+ "dateEventLocal": "2026-02-20",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "134264",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"idAwayTeam": "133757",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15859",
- "strVenue": "De Grolsch Veste",
+ "strResult": "",
+ "idVenue": "18441",
+ "strVenue": "Fortuna Sittard Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/deri3c1770369899.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489273",
- "idAPIfootball": "1552324",
- "strTimestamp": "2027-02-28T16:00:00",
- "strEvent": "Ajax vs Feyenoord",
- "strEventAlternate": "Feyenoord @ Ajax",
- "strFilename": "Dutch Eredivisie 2027-02-28 Ajax vs Feyenoord",
+ "idEvent": "2268360",
+ "idAPIfootball": "1381074",
+ "strTimestamp": "2026-02-21T20:00:00",
+ "strEvent": "Ajax vs NEC Nijmegen",
+ "strEventAlternate": "NEC Nijmegen @ Ajax",
+ "strFilename": "Dutch Eredivisie 2026-02-21 Ajax vs NEC Nijmegen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Ajax",
- "strAwayTeam": "Feyenoord",
- "intHomeScore": null,
+ "strAwayTeam": "NEC Nijmegen",
+ "intHomeScore": "1",
"intRound": "24",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-28",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-02-21",
+ "dateEventLocal": "2026-02-21",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
"idHomeTeam": "133772",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
- "idAwayTeam": "133758",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "idAwayTeam": "133760",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "21448",
"strVenue": "Johan Cruijff ArenA",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/u56v7i1769670779.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qjmcdj1769670809.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489274",
- "idAPIfootball": "1552332",
- "strTimestamp": "2027-02-28T16:00:00",
- "strEvent": "Willem II vs Groningen",
- "strEventAlternate": "Groningen @ Willem II",
- "strFilename": "Dutch Eredivisie 2027-02-28 Willem II vs Groningen",
+ "idEvent": "2268364",
+ "idAPIfootball": "1381078",
+ "strTimestamp": "2026-02-21T19:00:00",
+ "strEvent": "NAC Breda vs FC Volendam",
+ "strEventAlternate": "FC Volendam @ NAC Breda",
+ "strFilename": "Dutch Eredivisie 2026-02-21 NAC Breda vs FC Volendam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Willem II",
- "strAwayTeam": "Groningen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NAC Breda",
+ "strAwayTeam": "FC Volendam",
+ "intHomeScore": "1",
"intRound": "24",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-28",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133827",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
- "idAwayTeam": "133762",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "dateEvent": "2026-02-21",
+ "dateEventLocal": "2026-02-21",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133773",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
+ "idAwayTeam": "133867",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15856",
- "strVenue": "Koning Willem II Stadion",
+ "strResult": "",
+ "idVenue": "15866",
+ "strVenue": "Rat Verlegh Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/dqetyu1750407565.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489275",
- "idAPIfootball": "1552327",
- "strTimestamp": "2027-02-28T16:00:00",
- "strEvent": "Excelsior vs Heerenveen",
- "strEventAlternate": "Heerenveen @ Excelsior",
- "strFilename": "Dutch Eredivisie 2027-02-28 Excelsior vs Heerenveen",
+ "idEvent": "2268365",
+ "idAPIfootball": "1381079",
+ "strTimestamp": "2026-02-21T17:45:00",
+ "strEvent": "PSV Eindhoven vs Heerenveen",
+ "strEventAlternate": "Heerenveen @ PSV Eindhoven",
+ "strFilename": "Dutch Eredivisie 2026-02-21 PSV Eindhoven vs Heerenveen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Excelsior",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PSV Eindhoven",
"strAwayTeam": "Heerenveen",
- "intHomeScore": null,
+ "intHomeScore": "3",
"intRound": "24",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-28",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133757",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "dateEvent": "2026-02-21",
+ "dateEventLocal": "2026-02-21",
+ "strTime": "17:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133768",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"idAwayTeam": "133759",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15862",
- "strVenue": "Van Donge and De Roo Stadion",
+ "strResult": "",
+ "idVenue": "15844",
+ "strVenue": "Philips Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/q6hggr1750407569.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489276",
- "idAPIfootball": "1552326",
- "strTimestamp": "2027-02-28T16:00:00",
- "strEvent": "ADO Den Haag vs Twente",
- "strEventAlternate": "Twente @ ADO Den Haag",
- "strFilename": "Dutch Eredivisie 2027-02-28 ADO Den Haag vs Twente",
+ "idEvent": "2268361",
+ "idAPIfootball": "1381075",
+ "strTimestamp": "2026-02-22T15:45:00",
+ "strEvent": "AZ Alkmaar vs Sparta Rotterdam",
+ "strEventAlternate": "Sparta Rotterdam @ AZ Alkmaar",
+ "strFilename": "Dutch Eredivisie 2026-02-22 AZ Alkmaar vs Sparta Rotterdam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "ADO Den Haag",
- "strAwayTeam": "Twente",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "AZ Alkmaar",
+ "strAwayTeam": "Sparta Rotterdam",
+ "intHomeScore": "3",
"intRound": "24",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-28",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133769",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
- "idAwayTeam": "133774",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "dateEvent": "2026-02-22",
+ "dateEventLocal": "2026-02-22",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133767",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "idAwayTeam": "133866",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15843",
- "strVenue": "Cars Jeans Stadion",
+ "strResult": "",
+ "idVenue": "15860",
+ "strVenue": "AFAS Stadion Alkmaar",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/s3j76i1750407554.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489277",
- "idAPIfootball": "1552329",
- "strTimestamp": "2027-02-28T16:00:00",
- "strEvent": "Fortuna Sittard vs Utrecht",
- "strEventAlternate": "Utrecht @ Fortuna Sittard",
- "strFilename": "Dutch Eredivisie 2027-02-28 Fortuna Sittard vs Utrecht",
+ "idEvent": "2268362",
+ "idAPIfootball": "1381076",
+ "strTimestamp": "2026-02-22T19:00:00",
+ "strEvent": "Feyenoord vs SC Telstar",
+ "strEventAlternate": "SC Telstar @ Feyenoord",
+ "strFilename": "Dutch Eredivisie 2026-02-22 Feyenoord vs SC Telstar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Fortuna Sittard",
- "strAwayTeam": "Utrecht",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Feyenoord",
+ "strAwayTeam": "SC Telstar",
+ "intHomeScore": "2",
"intRound": "24",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-28",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134264",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
- "idAwayTeam": "133764",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "dateEvent": "2026-02-22",
+ "dateEventLocal": "2026-02-22",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133758",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "idAwayTeam": "138004",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18441",
- "strVenue": "Fortuna Sittard Stadion",
+ "strResult": "",
+ "idVenue": "15855",
+ "strVenue": "Stadion Feyenoord",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mpqhd11750407558.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489278",
- "idAPIfootball": "1552328",
- "strTimestamp": "2027-02-28T16:00:00",
- "strEvent": "NEC Nijmegen vs AZ Alkmaar",
- "strEventAlternate": "AZ Alkmaar @ NEC Nijmegen",
- "strFilename": "Dutch Eredivisie 2027-02-28 NEC Nijmegen vs AZ Alkmaar",
+ "idEvent": "2268363",
+ "idAPIfootball": "1381077",
+ "strTimestamp": "2026-02-22T13:30:00",
+ "strEvent": "Go Ahead Eagles vs Heracles Almelo",
+ "strEventAlternate": "Heracles Almelo @ Go Ahead Eagles",
+ "strFilename": "Dutch Eredivisie 2026-02-22 Go Ahead Eagles vs Heracles Almelo",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "NEC Nijmegen",
- "strAwayTeam": "AZ Alkmaar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Go Ahead Eagles",
+ "strAwayTeam": "Heracles Almelo",
+ "intHomeScore": "4",
"intRound": "24",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-28",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133760",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
- "idAwayTeam": "133767",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "dateEvent": "2026-02-22",
+ "dateEventLocal": "2026-02-22",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "134304",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "idAwayTeam": "133766",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17971",
- "strVenue": "Goffertstadion",
+ "strResult": "",
+ "idVenue": "17966",
+ "strVenue": "De Adelaarshorst",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mo5sxu1770369736.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zti4fq1750407562.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489279",
- "idAPIfootball": "1552325",
- "strTimestamp": "2027-02-28T16:00:00",
- "strEvent": "Cambuur vs PEC Zwolle",
- "strEventAlternate": "PEC Zwolle @ Cambuur",
- "strFilename": "Dutch Eredivisie 2027-02-28 Cambuur vs PEC Zwolle",
+ "idEvent": "2268367",
+ "idAPIfootball": "1381081",
+ "strTimestamp": "2026-02-22T11:15:00",
+ "strEvent": "Twente vs Groningen",
+ "strEventAlternate": "Groningen @ Twente",
+ "strFilename": "Dutch Eredivisie 2026-02-22 Twente vs Groningen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Cambuur",
- "strAwayTeam": "PEC Zwolle",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Twente",
+ "strAwayTeam": "Groningen",
+ "intHomeScore": "2",
"intRound": "24",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-28",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134303",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
- "idAwayTeam": "133936",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "dateEvent": "2026-02-22",
+ "dateEventLocal": "2026-02-22",
+ "strTime": "11:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133774",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "idAwayTeam": "133762",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "34141",
- "strVenue": "Kooi Stadion",
+ "strResult": "",
+ "idVenue": "15859",
+ "strVenue": "De Grolsch Veste",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/81qyel1750407573.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489280",
- "idAPIfootball": "1552330",
- "strTimestamp": "2027-02-28T16:00:00",
- "strEvent": "Sparta Rotterdam vs PSV Eindhoven",
- "strEventAlternate": "PSV Eindhoven @ Sparta Rotterdam",
- "strFilename": "Dutch Eredivisie 2027-02-28 Sparta Rotterdam vs PSV Eindhoven",
+ "idEvent": "2268368",
+ "idAPIfootball": "1381082",
+ "strTimestamp": "2026-02-22T13:30:00",
+ "strEvent": "Utrecht vs PEC Zwolle",
+ "strEventAlternate": "PEC Zwolle @ Utrecht",
+ "strFilename": "Dutch Eredivisie 2026-02-22 Utrecht vs PEC Zwolle",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Sparta Rotterdam",
- "strAwayTeam": "PSV Eindhoven",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Utrecht",
+ "strAwayTeam": "PEC Zwolle",
+ "intHomeScore": "1",
"intRound": "24",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-28",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133866",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
- "idAwayTeam": "133768",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "dateEvent": "2026-02-22",
+ "dateEventLocal": "2026-02-22",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133764",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "idAwayTeam": "133936",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18581",
- "strVenue": "Spartastadion",
+ "strResult": "",
+ "idVenue": "15864",
+ "strVenue": "Stadion Galgenwaard",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hmlwch1750407576.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489281",
- "idAPIfootball": "1552331",
- "strTimestamp": "2027-02-28T16:00:00",
- "strEvent": "Telstar vs Go Ahead Eagles",
- "strEventAlternate": "Go Ahead Eagles @ Telstar",
- "strFilename": "Dutch Eredivisie 2027-02-28 Telstar vs Go Ahead Eagles",
+ "idEvent": "2268374",
+ "idAPIfootball": "1381088",
+ "strTimestamp": "2026-02-27T19:00:00",
+ "strEvent": "SC Telstar vs NAC Breda",
+ "strEventAlternate": "NAC Breda @ SC Telstar",
+ "strFilename": "Dutch Eredivisie 2026-02-27 SC Telstar vs NAC Breda",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Telstar",
- "strAwayTeam": "Go Ahead Eagles",
- "intHomeScore": null,
- "intRound": "24",
- "intAwayScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "SC Telstar",
+ "strAwayTeam": "NAC Breda",
+ "intHomeScore": "3",
+ "intRound": "25",
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-02-28",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-02-27",
+ "dateEventLocal": "2026-02-27",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
"idHomeTeam": "138004",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
- "idAwayTeam": "134304",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "idAwayTeam": "133773",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "17957",
"strVenue": "711 Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1v6ivv1750407591.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489282",
- "idAPIfootball": "1552341",
- "strTimestamp": "2027-03-07T16:00:00",
- "strEvent": "PEC Zwolle vs Willem II",
- "strEventAlternate": "Willem II @ PEC Zwolle",
- "strFilename": "Dutch Eredivisie 2027-03-07 PEC Zwolle vs Willem II",
- "strSport": "Soccer",
- "idLeague": "4337",
- "strLeague": "Dutch Eredivisie",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PEC Zwolle",
- "strAwayTeam": "Willem II",
- "intHomeScore": null,
- "intRound": "25",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-03-07",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133936",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
- "idAwayTeam": "133827",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "18579",
- "strVenue": "MAC³PARK Stadion",
- "strCountry": "The Netherlands",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/l6p71h1625514275.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2489283",
- "idAPIfootball": "1552337",
- "strTimestamp": "2027-03-07T16:00:00",
- "strEvent": "PSV Eindhoven vs Utrecht",
- "strEventAlternate": "Utrecht @ PSV Eindhoven",
- "strFilename": "Dutch Eredivisie 2027-03-07 PSV Eindhoven vs Utrecht",
+ "idEvent": "2268371",
+ "idAPIfootball": "1381085",
+ "strTimestamp": "2026-02-28T15:30:00",
+ "strEvent": "Heerenveen vs Sparta Rotterdam",
+ "strEventAlternate": "Sparta Rotterdam @ Heerenveen",
+ "strFilename": "Dutch Eredivisie 2026-02-28 Heerenveen vs Sparta Rotterdam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PSV Eindhoven",
- "strAwayTeam": "Utrecht",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heerenveen",
+ "strAwayTeam": "Sparta Rotterdam",
+ "intHomeScore": "2",
"intRound": "25",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-07",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133768",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
- "idAwayTeam": "133764",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "dateEvent": "2026-02-28",
+ "dateEventLocal": "2026-02-28",
+ "strTime": "15:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133759",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "idAwayTeam": "133866",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15844",
- "strVenue": "Philips Stadion",
+ "strResult": "",
+ "idVenue": "15861",
+ "strVenue": "Abe Lenstra Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/f6k6zt1750407583.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489284",
- "idAPIfootball": "1552333",
- "strTimestamp": "2027-03-07T16:00:00",
- "strEvent": "ADO Den Haag vs Ajax",
- "strEventAlternate": "Ajax @ ADO Den Haag",
- "strFilename": "Dutch Eredivisie 2027-03-07 ADO Den Haag vs Ajax",
+ "idEvent": "2268372",
+ "idAPIfootball": "1381086",
+ "strTimestamp": "2026-02-28T17:45:00",
+ "strEvent": "Heracles Almelo vs PSV Eindhoven",
+ "strEventAlternate": "PSV Eindhoven @ Heracles Almelo",
+ "strFilename": "Dutch Eredivisie 2026-02-28 Heracles Almelo vs PSV Eindhoven",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "ADO Den Haag",
- "strAwayTeam": "Ajax",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heracles Almelo",
+ "strAwayTeam": "PSV Eindhoven",
+ "intHomeScore": "1",
"intRound": "25",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-07",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133769",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
- "idAwayTeam": "133772",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "dateEvent": "2026-02-28",
+ "dateEventLocal": "2026-02-28",
+ "strTime": "17:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133766",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
+ "idAwayTeam": "133768",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15843",
- "strVenue": "Cars Jeans Stadion",
+ "strResult": "",
+ "idVenue": "18584",
+ "strVenue": "Asito Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/svvckx1601658826.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/p3vrl11750407587.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489285",
- "idAPIfootball": "1552336",
- "strTimestamp": "2027-03-07T16:00:00",
- "strEvent": "Groningen vs Telstar",
- "strEventAlternate": "Telstar @ Groningen",
- "strFilename": "Dutch Eredivisie 2027-03-07 Groningen vs Telstar",
+ "idEvent": "2268373",
+ "idAPIfootball": "1381087",
+ "strTimestamp": "2026-02-28T20:00:00",
+ "strEvent": "NEC Nijmegen vs Fortuna Sittard",
+ "strEventAlternate": "Fortuna Sittard @ NEC Nijmegen",
+ "strFilename": "Dutch Eredivisie 2026-02-28 NEC Nijmegen vs Fortuna Sittard",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Groningen",
- "strAwayTeam": "Telstar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NEC Nijmegen",
+ "strAwayTeam": "Fortuna Sittard",
+ "intHomeScore": "2",
"intRound": "25",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-07",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133762",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
- "idAwayTeam": "138004",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "dateEvent": "2026-02-28",
+ "dateEventLocal": "2026-02-28",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133760",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "idAwayTeam": "134264",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21331",
- "strVenue": "Euroborg",
+ "strResult": "",
+ "idVenue": "17971",
+ "strVenue": "Goffertstadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/lgmlxq1770369907.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489286",
- "idAPIfootball": "1552338",
- "strTimestamp": "2027-03-07T16:00:00",
- "strEvent": "Fortuna Sittard vs NEC Nijmegen",
- "strEventAlternate": "NEC Nijmegen @ Fortuna Sittard",
- "strFilename": "Dutch Eredivisie 2027-03-07 Fortuna Sittard vs NEC Nijmegen",
+ "idEvent": "2268369",
+ "idAPIfootball": "1381083",
+ "strTimestamp": "2026-03-01T19:00:00",
+ "strEvent": "Excelsior vs Go Ahead Eagles",
+ "strEventAlternate": "Go Ahead Eagles @ Excelsior",
+ "strFilename": "Dutch Eredivisie 2026-03-01 Excelsior vs Go Ahead Eagles",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Fortuna Sittard",
- "strAwayTeam": "NEC Nijmegen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Excelsior",
+ "strAwayTeam": "Go Ahead Eagles",
+ "intHomeScore": "0",
"intRound": "25",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-07",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134264",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
- "idAwayTeam": "133760",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "dateEvent": "2026-03-01",
+ "dateEventLocal": "2026-03-01",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133757",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "idAwayTeam": "134304",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18441",
- "strVenue": "Fortuna Sittard Stadion",
+ "strResult": "",
+ "idVenue": "15862",
+ "strVenue": "Van Donge and De Roo Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/y3x2z81770369709.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/y6npw91770369903.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489287",
- "idAPIfootball": "1552334",
- "strTimestamp": "2027-03-07T16:00:00",
- "strEvent": "Feyenoord vs Heerenveen",
- "strEventAlternate": "Heerenveen @ Feyenoord",
- "strFilename": "Dutch Eredivisie 2027-03-07 Feyenoord vs Heerenveen",
+ "idEvent": "2268370",
+ "idAPIfootball": "1381084",
+ "strTimestamp": "2026-03-01T13:30:00",
+ "strEvent": "FC Volendam vs Groningen",
+ "strEventAlternate": "Groningen @ FC Volendam",
+ "strFilename": "Dutch Eredivisie 2026-03-01 FC Volendam vs Groningen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Feyenoord",
- "strAwayTeam": "Heerenveen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "FC Volendam",
+ "strAwayTeam": "Groningen",
+ "intHomeScore": "3",
"intRound": "25",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-07",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133758",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
- "idAwayTeam": "133759",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "dateEvent": "2026-03-01",
+ "dateEventLocal": "2026-03-01",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133867",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
+ "idAwayTeam": "133762",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15855",
- "strVenue": "Stadion Feyenoord",
+ "strResult": "",
+ "idVenue": "17969",
+ "strVenue": "Kras Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0xnd3i1750407580.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489288",
- "idAPIfootball": "1552335",
- "strTimestamp": "2027-03-07T16:00:00",
- "strEvent": "Go Ahead Eagles vs Excelsior",
- "strEventAlternate": "Excelsior @ Go Ahead Eagles",
- "strFilename": "Dutch Eredivisie 2027-03-07 Go Ahead Eagles vs Excelsior",
+ "idEvent": "2268375",
+ "idAPIfootball": "1381089",
+ "strTimestamp": "2026-03-01T13:30:00",
+ "strEvent": "Twente vs Feyenoord",
+ "strEventAlternate": "Feyenoord @ Twente",
+ "strFilename": "Dutch Eredivisie 2026-03-01 Twente vs Feyenoord",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Go Ahead Eagles",
- "strAwayTeam": "Excelsior",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Twente",
+ "strAwayTeam": "Feyenoord",
+ "intHomeScore": "2",
"intRound": "25",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-07",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134304",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
- "idAwayTeam": "133757",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "dateEvent": "2026-03-01",
+ "dateEventLocal": "2026-03-01",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133774",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "idAwayTeam": "133758",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17966",
- "strVenue": "De Adelaarshorst",
+ "strResult": "",
+ "idVenue": "15859",
+ "strVenue": "De Grolsch Veste",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7v6q7u1770369762.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/m1fz9a1750407595.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489289",
- "idAPIfootball": "1552340",
- "strTimestamp": "2027-03-07T16:00:00",
- "strEvent": "Twente vs AZ Alkmaar",
- "strEventAlternate": "AZ Alkmaar @ Twente",
- "strFilename": "Dutch Eredivisie 2027-03-07 Twente vs AZ Alkmaar",
+ "idEvent": "2268376",
+ "idAPIfootball": "1381090",
+ "strTimestamp": "2026-03-01T15:45:00",
+ "strEvent": "Utrecht vs AZ Alkmaar",
+ "strEventAlternate": "AZ Alkmaar @ Utrecht",
+ "strFilename": "Dutch Eredivisie 2026-03-01 Utrecht vs AZ Alkmaar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Twente",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Utrecht",
"strAwayTeam": "AZ Alkmaar",
- "intHomeScore": null,
+ "intHomeScore": "2",
"intRound": "25",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-07",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133774",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "dateEvent": "2026-03-01",
+ "dateEventLocal": "2026-03-01",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133764",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"idAwayTeam": "133767",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15859",
- "strVenue": "De Grolsch Veste",
+ "strResult": "",
+ "idVenue": "15864",
+ "strVenue": "Stadion Galgenwaard",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ms5nti1750407598.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489290",
- "idAPIfootball": "1552339",
- "strTimestamp": "2027-03-07T16:00:00",
- "strEvent": "Sparta Rotterdam vs Cambuur",
- "strEventAlternate": "Cambuur @ Sparta Rotterdam",
- "strFilename": "Dutch Eredivisie 2027-03-07 Sparta Rotterdam vs Cambuur",
+ "idEvent": "2268377",
+ "idAPIfootball": "1381091",
+ "strTimestamp": "2026-03-01T11:15:00",
+ "strEvent": "PEC Zwolle vs Ajax",
+ "strEventAlternate": "Ajax @ PEC Zwolle",
+ "strFilename": "Dutch Eredivisie 2026-03-01 PEC Zwolle vs Ajax",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Sparta Rotterdam",
- "strAwayTeam": "Cambuur",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PEC Zwolle",
+ "strAwayTeam": "Ajax",
+ "intHomeScore": "0",
"intRound": "25",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-07",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133866",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
- "idAwayTeam": "134303",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
+ "dateEvent": "2026-03-01",
+ "dateEventLocal": "2026-03-01",
+ "strTime": "11:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133936",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "133772",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18581",
- "strVenue": "Spartastadion",
+ "strResult": "",
+ "idVenue": "18579",
+ "strVenue": "MAC³PARK Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9it4ys1769670812.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489291",
- "idAPIfootball": "1552342",
- "strTimestamp": "2027-03-14T16:00:00",
- "strEvent": "Ajax vs PEC Zwolle",
- "strEventAlternate": "PEC Zwolle @ Ajax",
- "strFilename": "Dutch Eredivisie 2027-03-14 Ajax vs PEC Zwolle",
+ "idEvent": "2268381",
+ "idAPIfootball": "1381095",
+ "strTimestamp": "2026-03-06T19:00:00",
+ "strEvent": "Heracles Almelo vs Utrecht",
+ "strEventAlternate": "Utrecht @ Heracles Almelo",
+ "strFilename": "Dutch Eredivisie 2026-03-06 Heracles Almelo vs Utrecht",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Ajax",
- "strAwayTeam": "PEC Zwolle",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heracles Almelo",
+ "strAwayTeam": "Utrecht",
+ "intHomeScore": "0",
"intRound": "26",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-14",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133772",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
- "idAwayTeam": "133936",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "dateEvent": "2026-03-06",
+ "dateEventLocal": "2026-03-06",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133766",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
+ "idAwayTeam": "133764",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21448",
- "strVenue": "Johan Cruijff ArenA",
+ "strResult": "",
+ "idVenue": "18584",
+ "strVenue": "Asito Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4k9hce1769670702.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qr2myh1750407631.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489292",
- "idAPIfootball": "1552350",
- "strTimestamp": "2027-03-14T16:00:00",
- "strEvent": "Willem II vs Twente",
- "strEventAlternate": "Twente @ Willem II",
- "strFilename": "Dutch Eredivisie 2027-03-14 Willem II vs Twente",
+ "idEvent": "2268378",
+ "idAPIfootball": "1381092",
+ "strTimestamp": "2026-03-07T20:00:00",
+ "strEvent": "Excelsior vs Heerenveen",
+ "strEventAlternate": "Heerenveen @ Excelsior",
+ "strFilename": "Dutch Eredivisie 2026-03-07 Excelsior vs Heerenveen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Willem II",
- "strAwayTeam": "Twente",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Excelsior",
+ "strAwayTeam": "Heerenveen",
+ "intHomeScore": "1",
"intRound": "26",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-14",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133827",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
- "idAwayTeam": "133774",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "dateEvent": "2026-03-07",
+ "dateEventLocal": "2026-03-07",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133757",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "idAwayTeam": "133759",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15856",
- "strVenue": "Koning Willem II Stadion",
+ "strResult": "",
+ "idVenue": "15862",
+ "strVenue": "Van Donge and De Roo Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mh331m1750407602.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489293",
- "idAPIfootball": "1552345",
- "strTimestamp": "2027-03-14T16:00:00",
- "strEvent": "Excelsior vs NEC Nijmegen",
- "strEventAlternate": "NEC Nijmegen @ Excelsior",
- "strFilename": "Dutch Eredivisie 2027-03-14 Excelsior vs NEC Nijmegen",
+ "idEvent": "2268380",
+ "idAPIfootball": "1381094",
+ "strTimestamp": "2026-03-07T15:30:00",
+ "strEvent": "Groningen vs Ajax",
+ "strEventAlternate": "Ajax @ Groningen",
+ "strFilename": "Dutch Eredivisie 2026-03-07 Groningen vs Ajax",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Excelsior",
- "strAwayTeam": "NEC Nijmegen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Groningen",
+ "strAwayTeam": "Ajax",
+ "intHomeScore": "3",
"intRound": "26",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-14",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133757",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
- "idAwayTeam": "133760",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "dateEvent": "2026-03-07",
+ "dateEventLocal": "2026-03-07",
+ "strTime": "15:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133762",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "idAwayTeam": "133772",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15862",
- "strVenue": "Van Donge and De Roo Stadion",
+ "strResult": "",
+ "idVenue": "21331",
+ "strVenue": "Euroborg",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/824z8b1770369933.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6ad26u1769670816.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489294",
- "idAPIfootball": "1552343",
- "strTimestamp": "2027-03-14T16:00:00",
- "strEvent": "AZ Alkmaar vs Sparta Rotterdam",
- "strEventAlternate": "Sparta Rotterdam @ AZ Alkmaar",
- "strFilename": "Dutch Eredivisie 2027-03-14 AZ Alkmaar vs Sparta Rotterdam",
+ "idEvent": "2268384",
+ "idAPIfootball": "1381098",
+ "strTimestamp": "2026-03-07T19:00:00",
+ "strEvent": "PSV Eindhoven vs AZ Alkmaar",
+ "strEventAlternate": "AZ Alkmaar @ PSV Eindhoven",
+ "strFilename": "Dutch Eredivisie 2026-03-07 PSV Eindhoven vs AZ Alkmaar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "AZ Alkmaar",
- "strAwayTeam": "Sparta Rotterdam",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PSV Eindhoven",
+ "strAwayTeam": "AZ Alkmaar",
+ "intHomeScore": "2",
"intRound": "26",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-14",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133767",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
- "idAwayTeam": "133866",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "dateEvent": "2026-03-07",
+ "dateEventLocal": "2026-03-07",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133768",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "idAwayTeam": "133767",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15860",
- "strVenue": "AFAS Stadion Alkmaar",
+ "strResult": "",
+ "idVenue": "15844",
+ "strVenue": "Philips Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/j1mrir1770369910.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489295",
- "idAPIfootball": "1552349",
- "strTimestamp": "2027-03-14T16:00:00",
- "strEvent": "Utrecht vs Groningen",
- "strEventAlternate": "Groningen @ Utrecht",
- "strFilename": "Dutch Eredivisie 2027-03-14 Utrecht vs Groningen",
+ "idEvent": "2268379",
+ "idAPIfootball": "1381093",
+ "strTimestamp": "2026-03-08T13:30:00",
+ "strEvent": "Go Ahead Eagles vs Twente",
+ "strEventAlternate": "Twente @ Go Ahead Eagles",
+ "strFilename": "Dutch Eredivisie 2026-03-08 Go Ahead Eagles vs Twente",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Utrecht",
- "strAwayTeam": "Groningen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Go Ahead Eagles",
+ "strAwayTeam": "Twente",
+ "intHomeScore": "1",
"intRound": "26",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-14",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133764",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
- "idAwayTeam": "133762",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "dateEvent": "2026-03-08",
+ "dateEventLocal": "2026-03-08",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "134304",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "idAwayTeam": "133774",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15864",
- "strVenue": "Stadion Galgenwaard",
+ "strResult": "",
+ "idVenue": "17966",
+ "strVenue": "De Adelaarshorst",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/lt4kw61750407606.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489296",
- "idAPIfootball": "1552347",
- "strTimestamp": "2027-03-14T16:00:00",
- "strEvent": "Heerenveen vs Fortuna Sittard",
- "strEventAlternate": "Fortuna Sittard @ Heerenveen",
- "strFilename": "Dutch Eredivisie 2027-03-14 Heerenveen vs Fortuna Sittard",
+ "idEvent": "2268382",
+ "idAPIfootball": "1381096",
+ "strTimestamp": "2026-03-08T15:45:00",
+ "strEvent": "NAC Breda vs Feyenoord",
+ "strEventAlternate": "Feyenoord @ NAC Breda",
+ "strFilename": "Dutch Eredivisie 2026-03-08 NAC Breda vs Feyenoord",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Heerenveen",
- "strAwayTeam": "Fortuna Sittard",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NAC Breda",
+ "strAwayTeam": "Feyenoord",
+ "intHomeScore": "3",
"intRound": "26",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-14",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133759",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
- "idAwayTeam": "134264",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "dateEvent": "2026-03-08",
+ "dateEventLocal": "2026-03-08",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133773",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
+ "idAwayTeam": "133758",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15861",
- "strVenue": "Abe Lenstra Stadion",
+ "strResult": "",
+ "idVenue": "15866",
+ "strVenue": "Rat Verlegh Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/nazrtb1750407635.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489297",
- "idAPIfootball": "1552346",
- "strTimestamp": "2027-03-14T16:00:00",
- "strEvent": "Go Ahead Eagles vs Feyenoord",
- "strEventAlternate": "Feyenoord @ Go Ahead Eagles",
- "strFilename": "Dutch Eredivisie 2027-03-14 Go Ahead Eagles vs Feyenoord",
+ "idEvent": "2268383",
+ "idAPIfootball": "1381097",
+ "strTimestamp": "2026-03-08T19:00:00",
+ "strEvent": "NEC Nijmegen vs FC Volendam",
+ "strEventAlternate": "FC Volendam @ NEC Nijmegen",
+ "strFilename": "Dutch Eredivisie 2026-03-08 NEC Nijmegen vs FC Volendam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Go Ahead Eagles",
- "strAwayTeam": "Feyenoord",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NEC Nijmegen",
+ "strAwayTeam": "FC Volendam",
+ "intHomeScore": "3",
"intRound": "26",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-14",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134304",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
- "idAwayTeam": "133758",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "dateEvent": "2026-03-08",
+ "dateEventLocal": "2026-03-08",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133760",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "idAwayTeam": "133867",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17966",
- "strVenue": "De Adelaarshorst",
+ "strResult": "",
+ "idVenue": "17971",
+ "strVenue": "Goffertstadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9njvq21770369781.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fziv951750407638.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489298",
- "idAPIfootball": "1552344",
- "strTimestamp": "2027-03-14T16:00:00",
- "strEvent": "Cambuur vs ADO Den Haag",
- "strEventAlternate": "ADO Den Haag @ Cambuur",
- "strFilename": "Dutch Eredivisie 2027-03-14 Cambuur vs ADO Den Haag",
+ "idEvent": "2268385",
+ "idAPIfootball": "1381099",
+ "strTimestamp": "2026-03-08T13:30:00",
+ "strEvent": "Fortuna Sittard vs SC Telstar",
+ "strEventAlternate": "SC Telstar @ Fortuna Sittard",
+ "strFilename": "Dutch Eredivisie 2026-03-08 Fortuna Sittard vs SC Telstar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Cambuur",
- "strAwayTeam": "ADO Den Haag",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Fortuna Sittard",
+ "strAwayTeam": "SC Telstar",
+ "intHomeScore": "1",
"intRound": "26",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-14",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134303",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
- "idAwayTeam": "133769",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "dateEvent": "2026-03-08",
+ "dateEventLocal": "2026-03-08",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "134264",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "idAwayTeam": "138004",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "34141",
- "strVenue": "Kooi Stadion",
+ "strResult": "",
+ "idVenue": "18441",
+ "strVenue": "Fortuna Sittard Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/gz6zj11750407642.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489299",
- "idAPIfootball": "1552348",
- "strTimestamp": "2027-03-14T16:00:00",
- "strEvent": "Telstar vs PSV Eindhoven",
- "strEventAlternate": "PSV Eindhoven @ Telstar",
- "strFilename": "Dutch Eredivisie 2027-03-14 Telstar vs PSV Eindhoven",
+ "idEvent": "2268386",
+ "idAPIfootball": "1381100",
+ "strTimestamp": "2026-03-08T11:15:00",
+ "strEvent": "Sparta Rotterdam vs PEC Zwolle",
+ "strEventAlternate": "PEC Zwolle @ Sparta Rotterdam",
+ "strFilename": "Dutch Eredivisie 2026-03-08 Sparta Rotterdam vs PEC Zwolle",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Telstar",
- "strAwayTeam": "PSV Eindhoven",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Sparta Rotterdam",
+ "strAwayTeam": "PEC Zwolle",
+ "intHomeScore": "1",
"intRound": "26",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-14",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "138004",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
- "idAwayTeam": "133768",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "dateEvent": "2026-03-08",
+ "dateEventLocal": "2026-03-08",
+ "strTime": "11:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133866",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "idAwayTeam": "133936",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17957",
- "strVenue": "711 Stadion",
+ "strResult": "",
+ "idVenue": "18581",
+ "strVenue": "Spartastadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ghu1mo1750407646.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489300",
- "idAPIfootball": "1552359",
- "strTimestamp": "2027-03-21T16:00:00",
- "strEvent": "PEC Zwolle vs Heerenveen",
- "strEventAlternate": "Heerenveen @ PEC Zwolle",
- "strFilename": "Dutch Eredivisie 2027-03-21 PEC Zwolle vs Heerenveen",
+ "idEvent": "2268395",
+ "idAPIfootball": "1381109",
+ "strTimestamp": "2026-03-13T19:00:00",
+ "strEvent": "PEC Zwolle vs Groningen",
+ "strEventAlternate": "Groningen @ PEC Zwolle",
+ "strFilename": "Dutch Eredivisie 2026-03-13 PEC Zwolle vs Groningen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "PEC Zwolle",
- "strAwayTeam": "Heerenveen",
- "intHomeScore": null,
+ "strAwayTeam": "Groningen",
+ "intHomeScore": "1",
"intRound": "27",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "dateEvent": "2026-03-13",
+ "dateEventLocal": "2026-03-13",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
"idHomeTeam": "133936",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
- "idAwayTeam": "133759",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "idAwayTeam": "133762",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "18579",
"strVenue": "MAC³PARK Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xyb6xc1750407664.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489301",
- "idAPIfootball": "1552352",
- "strTimestamp": "2027-03-21T16:00:00",
- "strEvent": "ADO Den Haag vs Willem II",
- "strEventAlternate": "Willem II @ ADO Den Haag",
- "strFilename": "Dutch Eredivisie 2027-03-21 ADO Den Haag vs Willem II",
+ "idEvent": "2268387",
+ "idAPIfootball": "1381101",
+ "strTimestamp": "2026-03-14T20:00:00",
+ "strEvent": "Ajax vs Sparta Rotterdam",
+ "strEventAlternate": "Sparta Rotterdam @ Ajax",
+ "strFilename": "Dutch Eredivisie 2026-03-14 Ajax vs Sparta Rotterdam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "ADO Den Haag",
- "strAwayTeam": "Willem II",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Ajax",
+ "strAwayTeam": "Sparta Rotterdam",
+ "intHomeScore": "4",
"intRound": "27",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133769",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
- "idAwayTeam": "133827",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
+ "dateEvent": "2026-03-14",
+ "dateEventLocal": "2026-03-14",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133772",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "idAwayTeam": "133866",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15843",
- "strVenue": "Cars Jeans Stadion",
+ "strResult": "",
+ "idVenue": "21448",
+ "strVenue": "Johan Cruijff ArenA",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/flafe61601658954.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pjlinl1769670820.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489302",
- "idAPIfootball": "1552351",
- "strTimestamp": "2027-03-21T16:00:00",
- "strEvent": "AZ Alkmaar vs Excelsior",
- "strEventAlternate": "Excelsior @ AZ Alkmaar",
- "strFilename": "Dutch Eredivisie 2027-03-21 AZ Alkmaar vs Excelsior",
+ "idEvent": "2268389",
+ "idAPIfootball": "1381103",
+ "strTimestamp": "2026-03-14T15:30:00",
+ "strEvent": "FC Volendam vs Fortuna Sittard",
+ "strEventAlternate": "Fortuna Sittard @ FC Volendam",
+ "strFilename": "Dutch Eredivisie 2026-03-14 FC Volendam vs Fortuna Sittard",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "AZ Alkmaar",
- "strAwayTeam": "Excelsior",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "FC Volendam",
+ "strAwayTeam": "Fortuna Sittard",
+ "intHomeScore": "1",
"intRound": "27",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133767",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
- "idAwayTeam": "133757",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "dateEvent": "2026-03-14",
+ "dateEventLocal": "2026-03-14",
+ "strTime": "15:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133867",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
+ "idAwayTeam": "134264",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15860",
- "strVenue": "AFAS Stadion Alkmaar",
+ "strResult": "",
+ "idVenue": "17969",
+ "strVenue": "Kras Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/e6iebx1770369821.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/wjvxm51770369914.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489303",
- "idAPIfootball": "1552354",
- "strTimestamp": "2027-03-21T16:00:00",
- "strEvent": "Groningen vs PSV Eindhoven",
- "strEventAlternate": "PSV Eindhoven @ Groningen",
- "strFilename": "Dutch Eredivisie 2027-03-21 Groningen vs PSV Eindhoven",
+ "idEvent": "2268392",
+ "idAPIfootball": "1381106",
+ "strTimestamp": "2026-03-14T19:00:00",
+ "strEvent": "Heerenveen vs SC Telstar",
+ "strEventAlternate": "SC Telstar @ Heerenveen",
+ "strFilename": "Dutch Eredivisie 2026-03-14 Heerenveen vs SC Telstar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Groningen",
- "strAwayTeam": "PSV Eindhoven",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heerenveen",
+ "strAwayTeam": "SC Telstar",
+ "intHomeScore": "3",
"intRound": "27",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133762",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
- "idAwayTeam": "133768",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "dateEvent": "2026-03-14",
+ "dateEventLocal": "2026-03-14",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133759",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "idAwayTeam": "138004",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21331",
- "strVenue": "Euroborg",
+ "strResult": "",
+ "idVenue": "15861",
+ "strVenue": "Abe Lenstra Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/56d8vf1750407657.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489304",
- "idAPIfootball": "1552358",
- "strTimestamp": "2027-03-21T16:00:00",
- "strEvent": "Utrecht vs Sparta Rotterdam",
- "strEventAlternate": "Sparta Rotterdam @ Utrecht",
- "strFilename": "Dutch Eredivisie 2027-03-21 Utrecht vs Sparta Rotterdam",
+ "idEvent": "2268393",
+ "idAPIfootball": "1381107",
+ "strTimestamp": "2026-03-14T17:45:00",
+ "strEvent": "PSV Eindhoven vs NEC Nijmegen",
+ "strEventAlternate": "NEC Nijmegen @ PSV Eindhoven",
+ "strFilename": "Dutch Eredivisie 2026-03-14 PSV Eindhoven vs NEC Nijmegen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Utrecht",
- "strAwayTeam": "Sparta Rotterdam",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PSV Eindhoven",
+ "strAwayTeam": "NEC Nijmegen",
+ "intHomeScore": "2",
"intRound": "27",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133764",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
- "idAwayTeam": "133866",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "dateEvent": "2026-03-14",
+ "dateEventLocal": "2026-03-14",
+ "strTime": "17:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133768",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "idAwayTeam": "133760",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15864",
- "strVenue": "Stadion Galgenwaard",
+ "strResult": "",
+ "idVenue": "15844",
+ "strVenue": "Philips Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/rk9un61770369925.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489305",
- "idAPIfootball": "1552353",
- "strTimestamp": "2027-03-21T16:00:00",
- "strEvent": "Feyenoord vs Cambuur",
- "strEventAlternate": "Cambuur @ Feyenoord",
- "strFilename": "Dutch Eredivisie 2027-03-21 Feyenoord vs Cambuur",
+ "idEvent": "2268388",
+ "idAPIfootball": "1381102",
+ "strTimestamp": "2026-03-15T13:30:00",
+ "strEvent": "AZ Alkmaar vs Heracles Almelo",
+ "strEventAlternate": "Heracles Almelo @ AZ Alkmaar",
+ "strFilename": "Dutch Eredivisie 2026-03-15 AZ Alkmaar vs Heracles Almelo",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Feyenoord",
- "strAwayTeam": "Cambuur",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "AZ Alkmaar",
+ "strAwayTeam": "Heracles Almelo",
+ "intHomeScore": "4",
"intRound": "27",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133758",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
- "idAwayTeam": "134303",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
+ "dateEvent": "2026-03-15",
+ "dateEventLocal": "2026-03-15",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133767",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "idAwayTeam": "133766",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15855",
- "strVenue": "Stadion Feyenoord",
+ "strResult": "",
+ "idVenue": "15860",
+ "strVenue": "AFAS Stadion Alkmaar",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6vv7v51750407653.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489306",
- "idAPIfootball": "1552355",
- "strTimestamp": "2027-03-21T16:00:00",
- "strEvent": "NEC Nijmegen vs Ajax",
- "strEventAlternate": "Ajax @ NEC Nijmegen",
- "strFilename": "Dutch Eredivisie 2027-03-21 NEC Nijmegen vs Ajax",
+ "idEvent": "2268390",
+ "idAPIfootball": "1381104",
+ "strTimestamp": "2026-03-15T13:30:00",
+ "strEvent": "Feyenoord vs Excelsior",
+ "strEventAlternate": "Excelsior @ Feyenoord",
+ "strFilename": "Dutch Eredivisie 2026-03-15 Feyenoord vs Excelsior",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "NEC Nijmegen",
- "strAwayTeam": "Ajax",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Feyenoord",
+ "strAwayTeam": "Excelsior",
+ "intHomeScore": "2",
"intRound": "27",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133760",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
- "idAwayTeam": "133772",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "dateEvent": "2026-03-15",
+ "dateEventLocal": "2026-03-15",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133758",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "idAwayTeam": "133757",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17971",
- "strVenue": "Goffertstadion",
+ "strResult": "",
+ "idVenue": "15855",
+ "strVenue": "Stadion Feyenoord",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jlkz2t1769670783.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/46prsf1770369918.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489307",
- "idAPIfootball": "1552357",
- "strTimestamp": "2027-03-21T16:00:00",
- "strEvent": "Twente vs Go Ahead Eagles",
- "strEventAlternate": "Go Ahead Eagles @ Twente",
- "strFilename": "Dutch Eredivisie 2027-03-21 Twente vs Go Ahead Eagles",
+ "idEvent": "2268391",
+ "idAPIfootball": "1381105",
+ "strTimestamp": "2026-03-15T15:45:00",
+ "strEvent": "Go Ahead Eagles vs NAC Breda",
+ "strEventAlternate": "NAC Breda @ Go Ahead Eagles",
+ "strFilename": "Dutch Eredivisie 2026-03-15 Go Ahead Eagles vs NAC Breda",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Twente",
- "strAwayTeam": "Go Ahead Eagles",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Go Ahead Eagles",
+ "strAwayTeam": "NAC Breda",
+ "intHomeScore": "6",
"intRound": "27",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133774",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
- "idAwayTeam": "134304",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "dateEvent": "2026-03-15",
+ "dateEventLocal": "2026-03-15",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "134304",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "idAwayTeam": "133773",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15859",
- "strVenue": "De Grolsch Veste",
+ "strResult": "",
+ "idVenue": "17966",
+ "strVenue": "De Adelaarshorst",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/d4j8m91770369922.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489308",
- "idAPIfootball": "1552356",
- "strTimestamp": "2027-03-21T16:00:00",
- "strEvent": "Telstar vs Fortuna Sittard",
- "strEventAlternate": "Fortuna Sittard @ Telstar",
- "strFilename": "Dutch Eredivisie 2027-03-21 Telstar vs Fortuna Sittard",
+ "idEvent": "2268394",
+ "idAPIfootball": "1381108",
+ "strTimestamp": "2026-03-15T11:15:00",
+ "strEvent": "Twente vs Utrecht",
+ "strEventAlternate": "Utrecht @ Twente",
+ "strFilename": "Dutch Eredivisie 2026-03-15 Twente vs Utrecht",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Telstar",
- "strAwayTeam": "Fortuna Sittard",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Twente",
+ "strAwayTeam": "Utrecht",
+ "intHomeScore": "0",
"intRound": "27",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-03-21",
- "dateEventLocal": null,
- "strTime": "16:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "138004",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
- "idAwayTeam": "134264",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "dateEvent": "2026-03-15",
+ "dateEventLocal": "2026-03-15",
+ "strTime": "11:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133774",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "idAwayTeam": "133764",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17957",
- "strVenue": "711 Stadion",
+ "strResult": "",
+ "idVenue": "15859",
+ "strVenue": "De Grolsch Veste",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/71mmp71750407661.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489309",
- "idAPIfootball": "1552360",
- "strTimestamp": "2027-04-04T15:00:00",
- "strEvent": "Ajax vs Twente",
- "strEventAlternate": "Twente @ Ajax",
- "strFilename": "Dutch Eredivisie 2027-04-04 Ajax vs Twente",
+ "idEvent": "2268398",
+ "idAPIfootball": "1381112",
+ "strTimestamp": "2026-03-20T19:00:00",
+ "strEvent": "Heracles Almelo vs Excelsior",
+ "strEventAlternate": "Excelsior @ Heracles Almelo",
+ "strFilename": "Dutch Eredivisie 2026-03-20 Heracles Almelo vs Excelsior",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Ajax",
- "strAwayTeam": "Twente",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heracles Almelo",
+ "strAwayTeam": "Excelsior",
+ "intHomeScore": "1",
"intRound": "28",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-04",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133772",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
- "idAwayTeam": "133774",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "dateEvent": "2026-03-20",
+ "dateEventLocal": "2026-03-20",
+ "strTime": "19:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133766",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
+ "idAwayTeam": "133757",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21448",
- "strVenue": "Johan Cruijff ArenA",
+ "strResult": "",
+ "idVenue": "18584",
+ "strVenue": "Asito Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/i6y9m01769670845.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8xgko91750407672.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489310",
- "idAPIfootball": "1552368",
- "strTimestamp": "2027-04-04T15:00:00",
- "strEvent": "Willem II vs Utrecht",
- "strEventAlternate": "Utrecht @ Willem II",
- "strFilename": "Dutch Eredivisie 2027-04-04 Willem II vs Utrecht",
+ "idEvent": "2268400",
+ "idAPIfootball": "1381114",
+ "strTimestamp": "2026-03-21T15:30:00",
+ "strEvent": "Fortuna Sittard vs Twente",
+ "strEventAlternate": "Twente @ Fortuna Sittard",
+ "strFilename": "Dutch Eredivisie 2026-03-21 Fortuna Sittard vs Twente",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Willem II",
- "strAwayTeam": "Utrecht",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Fortuna Sittard",
+ "strAwayTeam": "Twente",
+ "intHomeScore": "1",
"intRound": "28",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-04",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133827",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
- "idAwayTeam": "133764",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "dateEvent": "2026-03-21",
+ "dateEventLocal": "2026-03-21",
+ "strTime": "15:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "134264",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "idAwayTeam": "133774",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15856",
- "strVenue": "Koning Willem II Stadion",
+ "strResult": "",
+ "idVenue": "18441",
+ "strVenue": "Fortuna Sittard Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/43wqa51750407679.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489311",
- "idAPIfootball": "1552362",
- "strTimestamp": "2027-04-04T15:00:00",
- "strEvent": "Excelsior vs PEC Zwolle",
- "strEventAlternate": "PEC Zwolle @ Excelsior",
- "strFilename": "Dutch Eredivisie 2027-04-04 Excelsior vs PEC Zwolle",
+ "idEvent": "2268401",
+ "idAPIfootball": "1381115",
+ "strTimestamp": "2026-03-21T17:45:00",
+ "strEvent": "Sparta Rotterdam vs FC Volendam",
+ "strEventAlternate": "FC Volendam @ Sparta Rotterdam",
+ "strFilename": "Dutch Eredivisie 2026-03-21 Sparta Rotterdam vs FC Volendam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Excelsior",
- "strAwayTeam": "PEC Zwolle",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Sparta Rotterdam",
+ "strAwayTeam": "FC Volendam",
+ "intHomeScore": "2",
"intRound": "28",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-04",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133757",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
- "idAwayTeam": "133936",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "dateEvent": "2026-03-21",
+ "dateEventLocal": "2026-03-21",
+ "strTime": "17:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133866",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "idAwayTeam": "133867",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15862",
- "strVenue": "Van Donge and De Roo Stadion",
+ "strResult": "",
+ "idVenue": "18581",
+ "strVenue": "Spartastadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/eor29o1770369847.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/13lqcz1750407683.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489312",
- "idAPIfootball": "1552365",
- "strTimestamp": "2027-04-04T15:00:00",
- "strEvent": "PSV Eindhoven vs AZ Alkmaar",
- "strEventAlternate": "AZ Alkmaar @ PSV Eindhoven",
- "strFilename": "Dutch Eredivisie 2027-04-04 PSV Eindhoven vs AZ Alkmaar",
+ "idEvent": "2268404",
+ "idAPIfootball": "1381118",
+ "strTimestamp": "2026-03-21T20:00:00",
+ "strEvent": "PEC Zwolle vs NAC Breda",
+ "strEventAlternate": "NAC Breda @ PEC Zwolle",
+ "strFilename": "Dutch Eredivisie 2026-03-21 PEC Zwolle vs NAC Breda",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PSV Eindhoven",
- "strAwayTeam": "AZ Alkmaar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PEC Zwolle",
+ "strAwayTeam": "NAC Breda",
+ "intHomeScore": "2",
"intRound": "28",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-04",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133768",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
- "idAwayTeam": "133767",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "dateEvent": "2026-03-21",
+ "dateEventLocal": "2026-03-21",
+ "strTime": "20:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133936",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "133773",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15844",
- "strVenue": "Philips Stadion",
+ "strResult": "",
+ "idVenue": "18579",
+ "strVenue": "MAC³PARK Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/j1mrir1770369910.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ua9atg1750407694.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489313",
- "idAPIfootball": "1552366",
- "strTimestamp": "2027-04-04T15:00:00",
- "strEvent": "Fortuna Sittard vs Feyenoord",
- "strEventAlternate": "Feyenoord @ Fortuna Sittard",
- "strFilename": "Dutch Eredivisie 2027-04-04 Fortuna Sittard vs Feyenoord",
+ "idEvent": "2268396",
+ "idAPIfootball": "1381110",
+ "strTimestamp": "2026-03-22T13:30:00",
+ "strEvent": "Feyenoord vs Ajax",
+ "strEventAlternate": "Ajax @ Feyenoord",
+ "strFilename": "Dutch Eredivisie 2026-03-22 Feyenoord vs Ajax",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Fortuna Sittard",
- "strAwayTeam": "Feyenoord",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Feyenoord",
+ "strAwayTeam": "Ajax",
+ "intHomeScore": "1",
"intRound": "28",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-04",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134264",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
- "idAwayTeam": "133758",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "dateEvent": "2026-03-22",
+ "dateEventLocal": "2026-03-22",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133758",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "idAwayTeam": "133772",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18441",
- "strVenue": "Fortuna Sittard Stadion",
+ "strResult": "",
+ "idVenue": "15855",
+ "strVenue": "Stadion Feyenoord",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/gapal11770369978.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qdddna1769670823.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489314",
- "idAPIfootball": "1552364",
- "strTimestamp": "2027-04-04T15:00:00",
- "strEvent": "Heerenveen vs Groningen",
- "strEventAlternate": "Groningen @ Heerenveen",
- "strFilename": "Dutch Eredivisie 2027-04-04 Heerenveen vs Groningen",
+ "idEvent": "2268397",
+ "idAPIfootball": "1381111",
+ "strTimestamp": "2026-03-22T15:45:00",
+ "strEvent": "Groningen vs AZ Alkmaar",
+ "strEventAlternate": "AZ Alkmaar @ Groningen",
+ "strFilename": "Dutch Eredivisie 2026-03-22 Groningen vs AZ Alkmaar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Heerenveen",
- "strAwayTeam": "Groningen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Groningen",
+ "strAwayTeam": "AZ Alkmaar",
+ "intHomeScore": "3",
"intRound": "28",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-04",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133759",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
- "idAwayTeam": "133762",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "dateEvent": "2026-03-22",
+ "dateEventLocal": "2026-03-22",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133762",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "idAwayTeam": "133767",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15861",
- "strVenue": "Abe Lenstra Stadion",
+ "strResult": "",
+ "idVenue": "21331",
+ "strVenue": "Euroborg",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7fzjxn1750407668.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489315",
- "idAPIfootball": "1552363",
- "strTimestamp": "2027-04-04T15:00:00",
- "strEvent": "Go Ahead Eagles vs NEC Nijmegen",
- "strEventAlternate": "NEC Nijmegen @ Go Ahead Eagles",
- "strFilename": "Dutch Eredivisie 2027-04-04 Go Ahead Eagles vs NEC Nijmegen",
+ "idEvent": "2268399",
+ "idAPIfootball": "1381113",
+ "strTimestamp": "2026-03-22T11:15:00",
+ "strEvent": "NEC Nijmegen vs Heerenveen",
+ "strEventAlternate": "Heerenveen @ NEC Nijmegen",
+ "strFilename": "Dutch Eredivisie 2026-03-22 NEC Nijmegen vs Heerenveen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Go Ahead Eagles",
- "strAwayTeam": "NEC Nijmegen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NEC Nijmegen",
+ "strAwayTeam": "Heerenveen",
+ "intHomeScore": "2",
"intRound": "28",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-04",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134304",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
- "idAwayTeam": "133760",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "dateEvent": "2026-03-22",
+ "dateEventLocal": "2026-03-22",
+ "strTime": "11:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133760",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "idAwayTeam": "133759",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17966",
- "strVenue": "De Adelaarshorst",
+ "strResult": "",
+ "idVenue": "17971",
+ "strVenue": "Goffertstadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mopjr01770369744.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ibn05l1750407676.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489316",
- "idAPIfootball": "1552361",
- "strTimestamp": "2027-04-04T15:00:00",
- "strEvent": "Cambuur vs Telstar",
- "strEventAlternate": "Telstar @ Cambuur",
- "strFilename": "Dutch Eredivisie 2027-04-04 Cambuur vs Telstar",
+ "idEvent": "2268402",
+ "idAPIfootball": "1381116",
+ "strTimestamp": "2026-03-22T15:45:00",
+ "strEvent": "SC Telstar vs PSV Eindhoven",
+ "strEventAlternate": "PSV Eindhoven @ SC Telstar",
+ "strFilename": "Dutch Eredivisie 2026-03-22 SC Telstar vs PSV Eindhoven",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Cambuur",
- "strAwayTeam": "Telstar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "SC Telstar",
+ "strAwayTeam": "PSV Eindhoven",
+ "intHomeScore": "3",
"intRound": "28",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-04",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134303",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
- "idAwayTeam": "138004",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "dateEvent": "2026-03-22",
+ "dateEventLocal": "2026-03-22",
+ "strTime": "15:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "138004",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "idAwayTeam": "133768",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "34141",
- "strVenue": "Kooi Stadion",
+ "strResult": "",
+ "idVenue": "17957",
+ "strVenue": "711 Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3ehks61750407687.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489317",
- "idAPIfootball": "1552367",
- "strTimestamp": "2027-04-04T15:00:00",
- "strEvent": "Sparta Rotterdam vs ADO Den Haag",
- "strEventAlternate": "ADO Den Haag @ Sparta Rotterdam",
- "strFilename": "Dutch Eredivisie 2027-04-04 Sparta Rotterdam vs ADO Den Haag",
+ "idEvent": "2268403",
+ "idAPIfootball": "1381117",
+ "strTimestamp": "2026-03-22T13:30:00",
+ "strEvent": "Utrecht vs Go Ahead Eagles",
+ "strEventAlternate": "Go Ahead Eagles @ Utrecht",
+ "strFilename": "Dutch Eredivisie 2026-03-22 Utrecht vs Go Ahead Eagles",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Sparta Rotterdam",
- "strAwayTeam": "ADO Den Haag",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Utrecht",
+ "strAwayTeam": "Go Ahead Eagles",
+ "intHomeScore": "2",
"intRound": "28",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-04",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133866",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
- "idAwayTeam": "133769",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "dateEvent": "2026-03-22",
+ "dateEventLocal": "2026-03-22",
+ "strTime": "13:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133764",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "idAwayTeam": "134304",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18581",
- "strVenue": "Spartastadion",
+ "strResult": "",
+ "idVenue": "15864",
+ "strVenue": "Stadion Galgenwaard",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2rlic11750407691.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489318",
- "idAPIfootball": "1552377",
- "strTimestamp": "2027-04-11T15:00:00",
- "strEvent": "PEC Zwolle vs PSV Eindhoven",
- "strEventAlternate": "PSV Eindhoven @ PEC Zwolle",
- "strFilename": "Dutch Eredivisie 2027-04-11 PEC Zwolle vs PSV Eindhoven",
+ "idEvent": "2268405",
+ "idAPIfootball": "1381119",
+ "strTimestamp": "2026-04-04T19:00:00",
+ "strEvent": "Ajax vs Twente",
+ "strEventAlternate": "Twente @ Ajax",
+ "strFilename": "Dutch Eredivisie 2026-04-04 Ajax vs Twente",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PEC Zwolle",
- "strAwayTeam": "PSV Eindhoven",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Ajax",
+ "strAwayTeam": "Twente",
+ "intHomeScore": "1",
"intRound": "29",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-11",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133936",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
- "idAwayTeam": "133768",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "dateEvent": "2026-04-04",
+ "dateEventLocal": "2026-04-03",
+ "strTime": "19:00:00",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133772",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "idAwayTeam": "133774",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18579",
- "strVenue": "MAC³PARK Stadion",
+ "strResult": "",
+ "idVenue": "21448",
+ "strVenue": "Johan Cruijff ArenA",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pspck71625514354.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/i6y9m01769670845.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489319",
- "idAPIfootball": "1552376",
- "strTimestamp": "2027-04-11T15:00:00",
- "strEvent": "Willem II vs AZ Alkmaar",
- "strEventAlternate": "AZ Alkmaar @ Willem II",
- "strFilename": "Dutch Eredivisie 2027-04-11 Willem II vs AZ Alkmaar",
+ "idEvent": "2268406",
+ "idAPIfootball": "1381120",
+ "strTimestamp": "2026-04-04T16:45:00",
+ "strEvent": "AZ Alkmaar vs Fortuna Sittard",
+ "strEventAlternate": "Fortuna Sittard @ AZ Alkmaar",
+ "strFilename": "Dutch Eredivisie 2026-04-04 AZ Alkmaar vs Fortuna Sittard",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Willem II",
- "strAwayTeam": "AZ Alkmaar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "AZ Alkmaar",
+ "strAwayTeam": "Fortuna Sittard",
+ "intHomeScore": "2",
"intRound": "29",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-11",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133827",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
- "idAwayTeam": "133767",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "dateEvent": "2026-04-04",
+ "dateEventLocal": "2026-04-03",
+ "strTime": "16:45:00",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133767",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "idAwayTeam": "134264",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15856",
- "strVenue": "Koning Willem II Stadion",
+ "strResult": "",
+ "idVenue": "15860",
+ "strVenue": "AFAS Stadion Alkmaar",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/wscnat1625514321.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bjcin81770369929.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489320",
- "idAPIfootball": "1552370",
- "strTimestamp": "2027-04-11T15:00:00",
- "strEvent": "ADO Den Haag vs Feyenoord",
- "strEventAlternate": "Feyenoord @ ADO Den Haag",
- "strFilename": "Dutch Eredivisie 2027-04-11 ADO Den Haag vs Feyenoord",
+ "idEvent": "2268407",
+ "idAPIfootball": "1381121",
+ "strTimestamp": "2026-04-04T19:00:00",
+ "strEvent": "Excelsior vs NEC Nijmegen",
+ "strEventAlternate": "NEC Nijmegen @ Excelsior",
+ "strFilename": "Dutch Eredivisie 2026-04-04 Excelsior vs NEC Nijmegen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "ADO Den Haag",
- "strAwayTeam": "Feyenoord",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Excelsior",
+ "strAwayTeam": "NEC Nijmegen",
+ "intHomeScore": "0",
"intRound": "29",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-11",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133769",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
- "idAwayTeam": "133758",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "dateEvent": "2026-04-04",
+ "dateEventLocal": "2026-04-03",
+ "strTime": "19:00:00",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133757",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "idAwayTeam": "133760",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15843",
- "strVenue": "Cars Jeans Stadion",
+ "strResult": "",
+ "idVenue": "15862",
+ "strVenue": "Van Donge and De Roo Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7ujx2i1601658940.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/824z8b1770369933.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489321",
- "idAPIfootball": "1552371",
- "strTimestamp": "2027-04-11T15:00:00",
- "strEvent": "Groningen vs Excelsior",
- "strEventAlternate": "Excelsior @ Groningen",
- "strFilename": "Dutch Eredivisie 2027-04-11 Groningen vs Excelsior",
+ "idEvent": "2268412",
+ "idAPIfootball": "1381126",
+ "strTimestamp": "2026-04-04T14:30:00",
+ "strEvent": "PSV Eindhoven vs Utrecht",
+ "strEventAlternate": "Utrecht @ PSV Eindhoven",
+ "strFilename": "Dutch Eredivisie 2026-04-04 PSV Eindhoven vs Utrecht",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Groningen",
- "strAwayTeam": "Excelsior",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PSV Eindhoven",
+ "strAwayTeam": "Utrecht",
+ "intHomeScore": "4",
"intRound": "29",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-11",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133762",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
- "idAwayTeam": "133757",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "dateEvent": "2026-04-04",
+ "dateEventLocal": "2026-04-03",
+ "strTime": "14:30:00",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133768",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "idAwayTeam": "133764",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21331",
- "strVenue": "Euroborg",
+ "strResult": "",
+ "idVenue": "15844",
+ "strVenue": "Philips Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/n09vbk1750407709.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489322",
- "idAPIfootball": "1552375",
- "strTimestamp": "2027-04-11T15:00:00",
- "strEvent": "Utrecht vs Ajax",
- "strEventAlternate": "Ajax @ Utrecht",
- "strFilename": "Dutch Eredivisie 2027-04-11 Utrecht vs Ajax",
+ "idEvent": "2268413",
+ "idAPIfootball": "1381127",
+ "strTimestamp": "2026-04-04T16:45:00",
+ "strEvent": "SC Telstar vs Groningen",
+ "strEventAlternate": "Groningen @ SC Telstar",
+ "strFilename": "Dutch Eredivisie 2026-04-04 SC Telstar vs Groningen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Utrecht",
- "strAwayTeam": "Ajax",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "SC Telstar",
+ "strAwayTeam": "Groningen",
+ "intHomeScore": "0",
"intRound": "29",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-11",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133764",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
- "idAwayTeam": "133772",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "dateEvent": "2026-04-04",
+ "dateEventLocal": "2026-04-03",
+ "strTime": "16:45:00",
+ "strTimeLocal": "17:00:00",
+ "strGroup": "",
+ "idHomeTeam": "138004",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "idAwayTeam": "133762",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15864",
- "strVenue": "Stadion Galgenwaard",
+ "strResult": "",
+ "idVenue": "17957",
+ "strVenue": "711 Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/m6c6en1769670746.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8cf7wj1750407713.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489323",
- "idAPIfootball": "1552372",
- "strTimestamp": "2027-04-11T15:00:00",
- "strEvent": "NEC Nijmegen vs Heerenveen",
- "strEventAlternate": "Heerenveen @ NEC Nijmegen",
- "strFilename": "Dutch Eredivisie 2027-04-11 NEC Nijmegen vs Heerenveen",
+ "idEvent": "2268408",
+ "idAPIfootball": "1381122",
+ "strTimestamp": "2026-04-05T12:30:00",
+ "strEvent": "FC Volendam vs Feyenoord",
+ "strEventAlternate": "Feyenoord @ FC Volendam",
+ "strFilename": "Dutch Eredivisie 2026-04-05 FC Volendam vs Feyenoord",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "NEC Nijmegen",
- "strAwayTeam": "Heerenveen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "FC Volendam",
+ "strAwayTeam": "Feyenoord",
+ "intHomeScore": "0",
"intRound": "29",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-11",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133760",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
- "idAwayTeam": "133759",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "dateEvent": "2026-04-05",
+ "dateEventLocal": "2026-04-05",
+ "strTime": "12:30:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133867",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
+ "idAwayTeam": "133758",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17971",
- "strVenue": "Goffertstadion",
+ "strResult": "",
+ "idVenue": "17969",
+ "strVenue": "Kras Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6hkn4c1770369936.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489324",
- "idAPIfootball": "1552369",
- "strTimestamp": "2027-04-11T15:00:00",
- "strEvent": "Cambuur vs Fortuna Sittard",
- "strEventAlternate": "Fortuna Sittard @ Cambuur",
- "strFilename": "Dutch Eredivisie 2027-04-11 Cambuur vs Fortuna Sittard",
+ "idEvent": "2268409",
+ "idAPIfootball": "1381123",
+ "strTimestamp": "2026-04-05T10:15:00",
+ "strEvent": "Go Ahead Eagles vs PEC Zwolle",
+ "strEventAlternate": "PEC Zwolle @ Go Ahead Eagles",
+ "strFilename": "Dutch Eredivisie 2026-04-05 Go Ahead Eagles vs PEC Zwolle",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Cambuur",
- "strAwayTeam": "Fortuna Sittard",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Go Ahead Eagles",
+ "strAwayTeam": "PEC Zwolle",
+ "intHomeScore": "5",
"intRound": "29",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-11",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134303",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
- "idAwayTeam": "134264",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "dateEvent": "2026-04-05",
+ "dateEventLocal": "2026-04-05",
+ "strTime": "10:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134304",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "idAwayTeam": "133936",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "34141",
- "strVenue": "Kooi Stadion",
+ "strResult": "",
+ "idVenue": "17966",
+ "strVenue": "De Adelaarshorst",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jhp3ah1770369940.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489325",
- "idAPIfootball": "1552373",
- "strTimestamp": "2027-04-11T15:00:00",
- "strEvent": "Sparta Rotterdam vs Go Ahead Eagles",
- "strEventAlternate": "Go Ahead Eagles @ Sparta Rotterdam",
- "strFilename": "Dutch Eredivisie 2027-04-11 Sparta Rotterdam vs Go Ahead Eagles",
+ "idEvent": "2268410",
+ "idAPIfootball": "1381124",
+ "strTimestamp": "2026-04-05T12:30:00",
+ "strEvent": "Heerenveen vs Heracles Almelo",
+ "strEventAlternate": "Heracles Almelo @ Heerenveen",
+ "strFilename": "Dutch Eredivisie 2026-04-05 Heerenveen vs Heracles Almelo",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Sparta Rotterdam",
- "strAwayTeam": "Go Ahead Eagles",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heerenveen",
+ "strAwayTeam": "Heracles Almelo",
+ "intHomeScore": "4",
"intRound": "29",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-11",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133866",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
- "idAwayTeam": "134304",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "dateEvent": "2026-04-05",
+ "dateEventLocal": "2026-04-05",
+ "strTime": "12:30:00",
+ "strTimeLocal": "15:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133759",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "idAwayTeam": "133766",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18581",
- "strVenue": "Spartastadion",
+ "strResult": "",
+ "idVenue": "15861",
+ "strVenue": "Abe Lenstra Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/megzhl1750407702.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489326",
- "idAPIfootball": "1552374",
- "strTimestamp": "2027-04-11T15:00:00",
- "strEvent": "Telstar vs Twente",
- "strEventAlternate": "Twente @ Telstar",
- "strFilename": "Dutch Eredivisie 2027-04-11 Telstar vs Twente",
+ "idEvent": "2268411",
+ "idAPIfootball": "1381125",
+ "strTimestamp": "2026-04-05T14:45:00",
+ "strEvent": "NAC Breda vs Sparta Rotterdam",
+ "strEventAlternate": "Sparta Rotterdam @ NAC Breda",
+ "strFilename": "Dutch Eredivisie 2026-04-05 NAC Breda vs Sparta Rotterdam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Telstar",
- "strAwayTeam": "Twente",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NAC Breda",
+ "strAwayTeam": "Sparta Rotterdam",
+ "intHomeScore": "0",
"intRound": "29",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-11",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "138004",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
- "idAwayTeam": "133774",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "dateEvent": "2026-04-05",
+ "dateEventLocal": "2026-04-05",
+ "strTime": "14:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133773",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
+ "idAwayTeam": "133866",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17957",
- "strVenue": "711 Stadion",
+ "strResult": "",
+ "idVenue": "15866",
+ "strVenue": "Rat Verlegh Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vmh02p1750407705.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489327",
- "idAPIfootball": "1552386",
- "strTimestamp": "2027-04-25T15:00:00",
- "strEvent": "PEC Zwolle vs Telstar",
- "strEventAlternate": "Telstar @ PEC Zwolle",
- "strFilename": "Dutch Eredivisie 2027-04-25 PEC Zwolle vs Telstar",
+ "idEvent": "2268420",
+ "idAPIfootball": "1381134",
+ "strTimestamp": "2026-04-10T18:00:00",
+ "strEvent": "Twente vs FC Volendam",
+ "strEventAlternate": "FC Volendam @ Twente",
+ "strFilename": "Dutch Eredivisie 2026-04-10 Twente vs FC Volendam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PEC Zwolle",
- "strAwayTeam": "Telstar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Twente",
+ "strAwayTeam": "FC Volendam",
+ "intHomeScore": "2",
"intRound": "30",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-25",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133936",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
- "idAwayTeam": "138004",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "dateEvent": "2026-04-10",
+ "dateEventLocal": "2026-04-10",
+ "strTime": "18:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133774",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "idAwayTeam": "133867",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18579",
- "strVenue": "MAC³PARK Stadion",
+ "strResult": "",
+ "idVenue": "15859",
+ "strVenue": "De Grolsch Veste",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ohab941750407735.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489328",
- "idAPIfootball": "1552379",
- "strTimestamp": "2027-04-25T15:00:00",
- "strEvent": "Excelsior vs Willem II",
- "strEventAlternate": "Willem II @ Excelsior",
- "strFilename": "Dutch Eredivisie 2027-04-25 Excelsior vs Willem II",
+ "idEvent": "2268415",
+ "idAPIfootball": "1381129",
+ "strTimestamp": "2026-04-11T18:00:00",
+ "strEvent": "Groningen vs Go Ahead Eagles",
+ "strEventAlternate": "Go Ahead Eagles @ Groningen",
+ "strFilename": "Dutch Eredivisie 2026-04-11 Groningen vs Go Ahead Eagles",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Excelsior",
- "strAwayTeam": "Willem II",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Groningen",
+ "strAwayTeam": "Go Ahead Eagles",
+ "intHomeScore": "0",
"intRound": "30",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-25",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133757",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
- "idAwayTeam": "133827",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
+ "dateEvent": "2026-04-11",
+ "dateEventLocal": "2026-04-11",
+ "strTime": "18:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133762",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "idAwayTeam": "134304",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15862",
- "strVenue": "Van Donge and De Roo Stadion",
+ "strResult": "",
+ "idVenue": "21331",
+ "strVenue": "Euroborg",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/i104en1750407720.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489329",
- "idAPIfootball": "1552383",
- "strTimestamp": "2027-04-25T15:00:00",
- "strEvent": "PSV Eindhoven vs Ajax",
- "strEventAlternate": "Ajax @ PSV Eindhoven",
- "strFilename": "Dutch Eredivisie 2027-04-25 PSV Eindhoven vs Ajax",
+ "idEvent": "2268416",
+ "idAPIfootball": "1381130",
+ "strTimestamp": "2026-04-11T19:00:00",
+ "strEvent": "Heracles Almelo vs Ajax",
+ "strEventAlternate": "Ajax @ Heracles Almelo",
+ "strFilename": "Dutch Eredivisie 2026-04-11 Heracles Almelo vs Ajax",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PSV Eindhoven",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heracles Almelo",
"strAwayTeam": "Ajax",
- "intHomeScore": null,
+ "intHomeScore": "0",
"intRound": "30",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-25",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133768",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "dateEvent": "2026-04-11",
+ "dateEventLocal": "2026-04-11",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133766",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"idAwayTeam": "133772",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15844",
- "strVenue": "Philips Stadion",
+ "strResult": "",
+ "idVenue": "18584",
+ "strVenue": "Asito Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/f126hg1769670706.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bzgfrc1769670849.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489330",
- "idAPIfootball": "1552378",
- "strTimestamp": "2027-04-25T15:00:00",
- "strEvent": "AZ Alkmaar vs Cambuur",
- "strEventAlternate": "Cambuur @ AZ Alkmaar",
- "strFilename": "Dutch Eredivisie 2027-04-25 AZ Alkmaar vs Cambuur",
+ "idEvent": "2268419",
+ "idAPIfootball": "1381133",
+ "strTimestamp": "2026-04-11T16:45:00",
+ "strEvent": "Sparta Rotterdam vs PSV Eindhoven",
+ "strEventAlternate": "PSV Eindhoven @ Sparta Rotterdam",
+ "strFilename": "Dutch Eredivisie 2026-04-11 Sparta Rotterdam vs PSV Eindhoven",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "AZ Alkmaar",
- "strAwayTeam": "Cambuur",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Sparta Rotterdam",
+ "strAwayTeam": "PSV Eindhoven",
+ "intHomeScore": "0",
"intRound": "30",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-25",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133767",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
- "idAwayTeam": "134303",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
+ "dateEvent": "2026-04-11",
+ "dateEventLocal": "2026-04-11",
+ "strTime": "16:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133866",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "idAwayTeam": "133768",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15860",
- "strVenue": "AFAS Stadion Alkmaar",
+ "strResult": "",
+ "idVenue": "18581",
+ "strVenue": "Spartastadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/39rsei1750407731.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489331",
- "idAPIfootball": "1552384",
- "strTimestamp": "2027-04-25T15:00:00",
- "strEvent": "Fortuna Sittard vs Groningen",
- "strEventAlternate": "Groningen @ Fortuna Sittard",
- "strFilename": "Dutch Eredivisie 2027-04-25 Fortuna Sittard vs Groningen",
+ "idEvent": "2268421",
+ "idAPIfootball": "1381135",
+ "strTimestamp": "2026-04-11T14:30:00",
+ "strEvent": "Utrecht vs SC Telstar",
+ "strEventAlternate": "SC Telstar @ Utrecht",
+ "strFilename": "Dutch Eredivisie 2026-04-11 Utrecht vs SC Telstar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Fortuna Sittard",
- "strAwayTeam": "Groningen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Utrecht",
+ "strAwayTeam": "SC Telstar",
+ "intHomeScore": "4",
"intRound": "30",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-25",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134264",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
- "idAwayTeam": "133762",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "dateEvent": "2026-04-11",
+ "dateEventLocal": "2026-04-11",
+ "strTime": "14:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133764",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "idAwayTeam": "138004",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18441",
- "strVenue": "Fortuna Sittard Stadion",
+ "strResult": "",
+ "idVenue": "15864",
+ "strVenue": "Stadion Galgenwaard",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/n7pk031750407739.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489332",
- "idAPIfootball": "1552380",
- "strTimestamp": "2027-04-25T15:00:00",
- "strEvent": "Feyenoord vs Sparta Rotterdam",
- "strEventAlternate": "Sparta Rotterdam @ Feyenoord",
- "strFilename": "Dutch Eredivisie 2027-04-25 Feyenoord vs Sparta Rotterdam",
+ "idEvent": "2268414",
+ "idAPIfootball": "1381128",
+ "strTimestamp": "2026-04-12T14:45:00",
+ "strEvent": "AZ Alkmaar vs Heerenveen",
+ "strEventAlternate": "Heerenveen @ AZ Alkmaar",
+ "strFilename": "Dutch Eredivisie 2026-04-12 AZ Alkmaar vs Heerenveen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Feyenoord",
- "strAwayTeam": "Sparta Rotterdam",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "AZ Alkmaar",
+ "strAwayTeam": "Heerenveen",
+ "intHomeScore": "3",
"intRound": "30",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-25",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133758",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
- "idAwayTeam": "133866",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "dateEvent": "2026-04-12",
+ "dateEventLocal": "2026-04-12",
+ "strTime": "14:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133767",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "idAwayTeam": "133759",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15855",
- "strVenue": "Stadion Feyenoord",
+ "strResult": "",
+ "idVenue": "15860",
+ "strVenue": "AFAS Stadion Alkmaar",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/apygu41750407716.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489333",
- "idAPIfootball": "1552382",
- "strTimestamp": "2027-04-25T15:00:00",
- "strEvent": "Heerenveen vs ADO Den Haag",
- "strEventAlternate": "ADO Den Haag @ Heerenveen",
- "strFilename": "Dutch Eredivisie 2027-04-25 Heerenveen vs ADO Den Haag",
+ "idEvent": "2268417",
+ "idAPIfootball": "1381131",
+ "strTimestamp": "2026-04-12T12:30:00",
+ "strEvent": "NEC Nijmegen vs Feyenoord",
+ "strEventAlternate": "Feyenoord @ NEC Nijmegen",
+ "strFilename": "Dutch Eredivisie 2026-04-12 NEC Nijmegen vs Feyenoord",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Heerenveen",
- "strAwayTeam": "ADO Den Haag",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NEC Nijmegen",
+ "strAwayTeam": "Feyenoord",
+ "intHomeScore": "1",
"intRound": "30",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-25",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133759",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
- "idAwayTeam": "133769",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "dateEvent": "2026-04-12",
+ "dateEventLocal": "2026-04-12",
+ "strTime": "12:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133760",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "idAwayTeam": "133758",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15861",
- "strVenue": "Abe Lenstra Stadion",
+ "strResult": "",
+ "idVenue": "17971",
+ "strVenue": "Goffertstadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6f7hdu1770369944.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489334",
- "idAPIfootball": "1552381",
- "strTimestamp": "2027-04-25T15:00:00",
- "strEvent": "Go Ahead Eagles vs Utrecht",
- "strEventAlternate": "Utrecht @ Go Ahead Eagles",
- "strFilename": "Dutch Eredivisie 2027-04-25 Go Ahead Eagles vs Utrecht",
+ "idEvent": "2268418",
+ "idAPIfootball": "1381132",
+ "strTimestamp": "2026-04-12T10:15:00",
+ "strEvent": "Fortuna Sittard vs NAC Breda",
+ "strEventAlternate": "NAC Breda @ Fortuna Sittard",
+ "strFilename": "Dutch Eredivisie 2026-04-12 Fortuna Sittard vs NAC Breda",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Go Ahead Eagles",
- "strAwayTeam": "Utrecht",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Fortuna Sittard",
+ "strAwayTeam": "NAC Breda",
+ "intHomeScore": "1",
"intRound": "30",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-25",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134304",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
- "idAwayTeam": "133764",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "dateEvent": "2026-04-12",
+ "dateEventLocal": "2026-04-12",
+ "strTime": "10:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "134264",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "idAwayTeam": "133773",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17966",
- "strVenue": "De Adelaarshorst",
+ "strResult": "",
+ "idVenue": "18441",
+ "strVenue": "Fortuna Sittard Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3q9k8b1750407728.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489335",
- "idAPIfootball": "1552385",
- "strTimestamp": "2027-04-25T15:00:00",
- "strEvent": "Twente vs NEC Nijmegen",
- "strEventAlternate": "NEC Nijmegen @ Twente",
- "strFilename": "Dutch Eredivisie 2027-04-25 Twente vs NEC Nijmegen",
+ "idEvent": "2268422",
+ "idAPIfootball": "1381136",
+ "strTimestamp": "2026-04-12T12:30:00",
+ "strEvent": "PEC Zwolle vs Excelsior",
+ "strEventAlternate": "Excelsior @ PEC Zwolle",
+ "strFilename": "Dutch Eredivisie 2026-04-12 PEC Zwolle vs Excelsior",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Twente",
- "strAwayTeam": "NEC Nijmegen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PEC Zwolle",
+ "strAwayTeam": "Excelsior",
+ "intHomeScore": "2",
"intRound": "30",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
"strWeather": null,
- "dateEvent": "2027-04-25",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133774",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
- "idAwayTeam": "133760",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "dateEvent": "2026-04-12",
+ "dateEventLocal": "2026-04-12",
+ "strTime": "12:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133936",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "133757",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15859",
- "strVenue": "De Grolsch Veste",
+ "strResult": "",
+ "idVenue": "18579",
+ "strVenue": "MAC³PARK Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4qb83q1770369948.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489336",
- "idAPIfootball": "1552387",
- "strTimestamp": "2027-05-02T15:00:00",
- "strEvent": "Ajax vs Fortuna Sittard",
- "strEventAlternate": "Fortuna Sittard @ Ajax",
- "strFilename": "Dutch Eredivisie 2027-05-02 Ajax vs Fortuna Sittard",
+ "idEvent": "2268430",
+ "idAPIfootball": "1381144",
+ "strTimestamp": "2026-04-22T18:00:00",
+ "strEvent": "SC Telstar vs Sparta Rotterdam",
+ "strEventAlternate": "Sparta Rotterdam @ SC Telstar",
+ "strFilename": "Dutch Eredivisie 2026-04-22 SC Telstar vs Sparta Rotterdam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Ajax",
- "strAwayTeam": "Fortuna Sittard",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "SC Telstar",
+ "strAwayTeam": "Sparta Rotterdam",
+ "intHomeScore": "4",
"intRound": "31",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-02",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133772",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
- "idAwayTeam": "134264",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-22",
+ "dateEventLocal": "2026-04-22",
+ "strTime": "18:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "138004",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "idAwayTeam": "133866",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "21448",
- "strVenue": "Johan Cruijff ArenA",
+ "strResult": "",
+ "idVenue": "17957",
+ "strVenue": "711 Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/x6h4931769670805.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/p67bzp1750407761.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489337",
- "idAPIfootball": "1552388",
- "strTimestamp": "2027-05-02T15:00:00",
- "strEvent": "Excelsior vs Cambuur",
- "strEventAlternate": "Cambuur @ Excelsior",
- "strFilename": "Dutch Eredivisie 2027-05-02 Excelsior vs Cambuur",
+ "idEvent": "2268425",
+ "idAPIfootball": "1381139",
+ "strTimestamp": "2026-04-23T16:45:00",
+ "strEvent": "Go Ahead Eagles vs AZ Alkmaar",
+ "strEventAlternate": "AZ Alkmaar @ Go Ahead Eagles",
+ "strFilename": "Dutch Eredivisie 2026-04-23 Go Ahead Eagles vs AZ Alkmaar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Excelsior",
- "strAwayTeam": "Cambuur",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Go Ahead Eagles",
+ "strAwayTeam": "AZ Alkmaar",
+ "intHomeScore": "0",
"intRound": "31",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-02",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133757",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
- "idAwayTeam": "134303",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-23",
+ "dateEventLocal": "2026-04-23",
+ "strTime": "16:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "134304",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "idAwayTeam": "133767",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15862",
- "strVenue": "Van Donge and De Roo Stadion",
+ "strResult": "",
+ "idVenue": "17966",
+ "strVenue": "De Adelaarshorst",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8w8zqd1770369969.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489338",
- "idAPIfootball": "1552391",
- "strTimestamp": "2027-05-02T15:00:00",
- "strEvent": "Groningen vs ADO Den Haag",
- "strEventAlternate": "ADO Den Haag @ Groningen",
- "strFilename": "Dutch Eredivisie 2027-05-02 Groningen vs ADO Den Haag",
+ "idEvent": "2268429",
+ "idAPIfootball": "1381143",
+ "strTimestamp": "2026-04-23T19:00:00",
+ "strEvent": "PSV Eindhoven vs PEC Zwolle",
+ "strEventAlternate": "PEC Zwolle @ PSV Eindhoven",
+ "strFilename": "Dutch Eredivisie 2026-04-23 PSV Eindhoven vs PEC Zwolle",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Groningen",
- "strAwayTeam": "ADO Den Haag",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PSV Eindhoven",
+ "strAwayTeam": "PEC Zwolle",
+ "intHomeScore": "6",
"intRound": "31",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-02",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133762",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
- "idAwayTeam": "133769",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-23",
+ "dateEventLocal": "2026-04-23",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133768",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "idAwayTeam": "133936",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
"intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21331",
- "strVenue": "Euroborg",
+ "intScoreVotes": null,
+ "strResult": "",
+ "idVenue": "15844",
+ "strVenue": "Philips Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xn77we1770369973.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489339",
- "idAPIfootball": "1552389",
- "strTimestamp": "2027-05-02T15:00:00",
- "strEvent": "Feyenoord vs Willem II",
- "strEventAlternate": "Willem II @ Feyenoord",
- "strFilename": "Dutch Eredivisie 2027-05-02 Feyenoord vs Willem II",
+ "idEvent": "2268424",
+ "idAPIfootball": "1381138",
+ "strTimestamp": "2026-04-25T14:30:00",
+ "strEvent": "Feyenoord vs Groningen",
+ "strEventAlternate": "Groningen @ Feyenoord",
+ "strFilename": "Dutch Eredivisie 2026-04-25 Feyenoord vs Groningen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Feyenoord",
- "strAwayTeam": "Willem II",
- "intHomeScore": null,
+ "strAwayTeam": "Groningen",
+ "intHomeScore": "3",
"intRound": "31",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-02",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "strWeather": "",
+ "dateEvent": "2026-04-25",
+ "dateEventLocal": "2026-04-25",
+ "strTime": "14:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
"idHomeTeam": "133758",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
- "idAwayTeam": "133827",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
+ "idAwayTeam": "133762",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "15855",
"strVenue": "Stadion Feyenoord",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7599481625514323.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/oyw5w31750407746.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489340",
- "idAPIfootball": "1552392",
- "strTimestamp": "2027-05-02T15:00:00",
- "strEvent": "Heerenveen vs Utrecht",
- "strEventAlternate": "Utrecht @ Heerenveen",
- "strFilename": "Dutch Eredivisie 2027-05-02 Heerenveen vs Utrecht",
+ "idEvent": "2268426",
+ "idAPIfootball": "1381140",
+ "strTimestamp": "2026-04-25T16:45:00",
+ "strEvent": "Heerenveen vs Fortuna Sittard",
+ "strEventAlternate": "Fortuna Sittard @ Heerenveen",
+ "strFilename": "Dutch Eredivisie 2026-04-25 Heerenveen vs Fortuna Sittard",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Heerenveen",
- "strAwayTeam": "Utrecht",
- "intHomeScore": null,
+ "strAwayTeam": "Fortuna Sittard",
+ "intHomeScore": "2",
"intRound": "31",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-02",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "strWeather": "",
+ "dateEvent": "2026-04-25",
+ "dateEventLocal": "2026-04-25",
+ "strTime": "16:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
"idHomeTeam": "133759",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
- "idAwayTeam": "133764",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "idAwayTeam": "134264",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "15861",
"strVenue": "Abe Lenstra Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/n2xq8t1750407750.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489341",
- "idAPIfootball": "1552390",
- "strTimestamp": "2027-05-02T15:00:00",
- "strEvent": "Go Ahead Eagles vs PSV Eindhoven",
- "strEventAlternate": "PSV Eindhoven @ Go Ahead Eagles",
- "strFilename": "Dutch Eredivisie 2027-05-02 Go Ahead Eagles vs PSV Eindhoven",
+ "idEvent": "2268428",
+ "idAPIfootball": "1381142",
+ "strTimestamp": "2026-04-25T18:00:00",
+ "strEvent": "NAC Breda vs Ajax",
+ "strEventAlternate": "Ajax @ NAC Breda",
+ "strFilename": "Dutch Eredivisie 2026-04-25 NAC Breda vs Ajax",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Go Ahead Eagles",
- "strAwayTeam": "PSV Eindhoven",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NAC Breda",
+ "strAwayTeam": "Ajax",
+ "intHomeScore": "0",
"intRound": "31",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-02",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134304",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
- "idAwayTeam": "133768",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-25",
+ "dateEventLocal": "2026-04-25",
+ "strTime": "18:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133773",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
+ "idAwayTeam": "133772",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17966",
- "strVenue": "De Adelaarshorst",
+ "strResult": "",
+ "idVenue": "15866",
+ "strVenue": "Rat Verlegh Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/roh8h71770369995.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/i9i13q1769670852.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489342",
- "idAPIfootball": "1552393",
- "strTimestamp": "2027-05-02T15:00:00",
- "strEvent": "NEC Nijmegen vs PEC Zwolle",
- "strEventAlternate": "PEC Zwolle @ NEC Nijmegen",
- "strFilename": "Dutch Eredivisie 2027-05-02 NEC Nijmegen vs PEC Zwolle",
+ "idEvent": "2268431",
+ "idAPIfootball": "1381145",
+ "strTimestamp": "2026-04-25T19:00:00",
+ "strEvent": "Twente vs NEC Nijmegen",
+ "strEventAlternate": "NEC Nijmegen @ Twente",
+ "strFilename": "Dutch Eredivisie 2026-04-25 Twente vs NEC Nijmegen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "NEC Nijmegen",
- "strAwayTeam": "PEC Zwolle",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Twente",
+ "strAwayTeam": "NEC Nijmegen",
+ "intHomeScore": "1",
"intRound": "31",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-02",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133760",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
- "idAwayTeam": "133936",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-25",
+ "dateEventLocal": "2026-04-25",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133774",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "idAwayTeam": "133760",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17971",
- "strVenue": "Goffertstadion",
+ "strResult": "",
+ "idVenue": "15859",
+ "strVenue": "De Grolsch Veste",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yb9eoz1770369869.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jphsj61750407765.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489343",
- "idAPIfootball": "1552394",
- "strTimestamp": "2027-05-02T15:00:00",
- "strEvent": "Sparta Rotterdam vs Twente",
- "strEventAlternate": "Twente @ Sparta Rotterdam",
- "strFilename": "Dutch Eredivisie 2027-05-02 Sparta Rotterdam vs Twente",
+ "idEvent": "2268423",
+ "idAPIfootball": "1381137",
+ "strTimestamp": "2026-04-26T10:15:00",
+ "strEvent": "Excelsior vs Utrecht",
+ "strEventAlternate": "Utrecht @ Excelsior",
+ "strFilename": "Dutch Eredivisie 2026-04-26 Excelsior vs Utrecht",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Sparta Rotterdam",
- "strAwayTeam": "Twente",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Excelsior",
+ "strAwayTeam": "Utrecht",
+ "intHomeScore": "5",
"intRound": "31",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-02",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133866",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
- "idAwayTeam": "133774",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-26",
+ "dateEventLocal": "2026-04-26",
+ "strTime": "10:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133757",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "idAwayTeam": "133764",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18581",
- "strVenue": "Spartastadion",
+ "strResult": "",
+ "idVenue": "15862",
+ "strVenue": "Van Donge and De Roo Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pmmn291750407742.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489344",
- "idAPIfootball": "1552395",
- "strTimestamp": "2027-05-02T15:00:00",
- "strEvent": "Telstar vs AZ Alkmaar",
- "strEventAlternate": "AZ Alkmaar @ Telstar",
- "strFilename": "Dutch Eredivisie 2027-05-02 Telstar vs AZ Alkmaar",
+ "idEvent": "2268427",
+ "idAPIfootball": "1381141",
+ "strTimestamp": "2026-04-26T12:30:00",
+ "strEvent": "Heracles Almelo vs FC Volendam",
+ "strEventAlternate": "FC Volendam @ Heracles Almelo",
+ "strFilename": "Dutch Eredivisie 2026-04-26 Heracles Almelo vs FC Volendam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Telstar",
- "strAwayTeam": "AZ Alkmaar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heracles Almelo",
+ "strAwayTeam": "FC Volendam",
+ "intHomeScore": "0",
"intRound": "31",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-02",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "138004",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
- "idAwayTeam": "133767",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "strWeather": "",
+ "dateEvent": "2026-04-26",
+ "dateEventLocal": "2026-04-26",
+ "strTime": "12:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133766",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
+ "idAwayTeam": "133867",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17957",
- "strVenue": "711 Stadion",
+ "strResult": "",
+ "idVenue": "18584",
+ "strVenue": "Asito Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5k0r8j1750407753.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489345",
- "idAPIfootball": "1552404",
- "strTimestamp": "2027-05-09T15:00:00",
- "strEvent": "PEC Zwolle vs Sparta Rotterdam",
- "strEventAlternate": "Sparta Rotterdam @ PEC Zwolle",
- "strFilename": "Dutch Eredivisie 2027-05-09 PEC Zwolle vs Sparta Rotterdam",
+ "idEvent": "2268432",
+ "idAPIfootball": "1381146",
+ "strTimestamp": "2026-05-02T18:00:00",
+ "strEvent": "Ajax vs PSV Eindhoven",
+ "strEventAlternate": "PSV Eindhoven @ Ajax",
+ "strFilename": "Dutch Eredivisie 2026-05-02 Ajax vs PSV Eindhoven",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PEC Zwolle",
- "strAwayTeam": "Sparta Rotterdam",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Ajax",
+ "strAwayTeam": "PSV Eindhoven",
+ "intHomeScore": "2",
"intRound": "32",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-09",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133936",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
- "idAwayTeam": "133866",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-02",
+ "dateEventLocal": "2026-05-02",
+ "strTime": "18:00:00",
+ "strTimeLocal": "20:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133772",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "idAwayTeam": "133768",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18579",
- "strVenue": "MAC³PARK Stadion",
+ "strResult": "",
+ "idVenue": "21448",
+ "strVenue": "Johan Cruijff ArenA",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5f1d3p1769670856.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489346",
- "idAPIfootball": "1552403",
- "strTimestamp": "2027-05-09T15:00:00",
- "strEvent": "Willem II vs Telstar",
- "strEventAlternate": "Telstar @ Willem II",
- "strFilename": "Dutch Eredivisie 2027-05-09 Willem II vs Telstar",
+ "idEvent": "2268435",
+ "idAPIfootball": "1381149",
+ "strTimestamp": "2026-05-02T16:45:00",
+ "strEvent": "Groningen vs Excelsior",
+ "strEventAlternate": "Excelsior @ Groningen",
+ "strFilename": "Dutch Eredivisie 2026-05-02 Groningen vs Excelsior",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Willem II",
- "strAwayTeam": "Telstar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Groningen",
+ "strAwayTeam": "Excelsior",
+ "intHomeScore": "2",
"intRound": "32",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-09",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133827",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
- "idAwayTeam": "138004",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-02",
+ "dateEventLocal": "2026-05-02",
+ "strTime": "16:45:00",
+ "strTimeLocal": "18:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133762",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "idAwayTeam": "133757",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15856",
- "strVenue": "Koning Willem II Stadion",
+ "strResult": "",
+ "idVenue": "21331",
+ "strVenue": "Euroborg",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7x02mf1750407776.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489347",
- "idAPIfootball": "1552399",
- "strTimestamp": "2027-05-09T15:00:00",
- "strEvent": "PSV Eindhoven vs Excelsior",
- "strEventAlternate": "Excelsior @ PSV Eindhoven",
- "strFilename": "Dutch Eredivisie 2027-05-09 PSV Eindhoven vs Excelsior",
+ "idEvent": "2268436",
+ "idAPIfootball": "1381150",
+ "strTimestamp": "2026-05-02T19:00:00",
+ "strEvent": "NEC Nijmegen vs SC Telstar",
+ "strEventAlternate": "SC Telstar @ NEC Nijmegen",
+ "strFilename": "Dutch Eredivisie 2026-05-02 NEC Nijmegen vs SC Telstar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PSV Eindhoven",
- "strAwayTeam": "Excelsior",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NEC Nijmegen",
+ "strAwayTeam": "SC Telstar",
+ "intHomeScore": "1",
"intRound": "32",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-09",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133768",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
- "idAwayTeam": "133757",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-02",
+ "dateEventLocal": "2026-05-02",
+ "strTime": "19:00:00",
+ "strTimeLocal": "21:00:00",
+ "strGroup": "",
+ "idHomeTeam": "133760",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "idAwayTeam": "138004",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15844",
- "strVenue": "Philips Stadion",
+ "strResult": "",
+ "idVenue": "17971",
+ "strVenue": "Goffertstadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/gjlwcq1770369858.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ogso0u1750407779.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489348",
- "idAPIfootball": "1552398",
- "strTimestamp": "2027-05-09T15:00:00",
- "strEvent": "ADO Den Haag vs NEC Nijmegen",
- "strEventAlternate": "NEC Nijmegen @ ADO Den Haag",
- "strFilename": "Dutch Eredivisie 2027-05-09 ADO Den Haag vs NEC Nijmegen",
+ "idEvent": "2268439",
+ "idAPIfootball": "1381153",
+ "strTimestamp": "2026-05-02T14:30:00",
+ "strEvent": "Utrecht vs NAC Breda",
+ "strEventAlternate": "NAC Breda @ Utrecht",
+ "strFilename": "Dutch Eredivisie 2026-05-02 Utrecht vs NAC Breda",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "ADO Den Haag",
- "strAwayTeam": "NEC Nijmegen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Utrecht",
+ "strAwayTeam": "NAC Breda",
+ "intHomeScore": "2",
"intRound": "32",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-09",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133769",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
- "idAwayTeam": "133760",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-02",
+ "dateEventLocal": "2026-05-02",
+ "strTime": "14:30:00",
+ "strTimeLocal": "16:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133764",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "idAwayTeam": "133773",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15843",
- "strVenue": "Cars Jeans Stadion",
+ "strResult": "",
+ "idVenue": "15864",
+ "strVenue": "Stadion Galgenwaard",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fp59na1750407787.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489349",
- "idAPIfootball": "1552396",
- "strTimestamp": "2027-05-09T15:00:00",
- "strEvent": "AZ Alkmaar vs Ajax",
- "strEventAlternate": "Ajax @ AZ Alkmaar",
- "strFilename": "Dutch Eredivisie 2027-05-09 AZ Alkmaar vs Ajax",
+ "idEvent": "2268433",
+ "idAPIfootball": "1381147",
+ "strTimestamp": "2026-05-03T14:45:00",
+ "strEvent": "AZ Alkmaar vs Twente",
+ "strEventAlternate": "Twente @ AZ Alkmaar",
+ "strFilename": "Dutch Eredivisie 2026-05-03 AZ Alkmaar vs Twente",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "AZ Alkmaar",
- "strAwayTeam": "Ajax",
- "intHomeScore": null,
+ "strAwayTeam": "Twente",
+ "intHomeScore": "2",
"intRound": "32",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-09",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-03",
+ "dateEventLocal": "2026-05-03",
+ "strTime": "14:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
"idHomeTeam": "133767",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
- "idAwayTeam": "133772",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "idAwayTeam": "133774",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "15860",
"strVenue": "AFAS Stadion Alkmaar",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6o8ev41769670801.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/d0obnk1750407768.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489350",
- "idAPIfootball": "1552400",
- "strTimestamp": "2027-05-09T15:00:00",
- "strEvent": "Fortuna Sittard vs Go Ahead Eagles",
- "strEventAlternate": "Go Ahead Eagles @ Fortuna Sittard",
- "strFilename": "Dutch Eredivisie 2027-05-09 Fortuna Sittard vs Go Ahead Eagles",
+ "idEvent": "2268434",
+ "idAPIfootball": "1381148",
+ "strTimestamp": "2026-05-03T10:15:00",
+ "strEvent": "FC Volendam vs Heerenveen",
+ "strEventAlternate": "Heerenveen @ FC Volendam",
+ "strFilename": "Dutch Eredivisie 2026-05-03 FC Volendam vs Heerenveen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Fortuna Sittard",
- "strAwayTeam": "Go Ahead Eagles",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "FC Volendam",
+ "strAwayTeam": "Heerenveen",
+ "intHomeScore": "0",
"intRound": "32",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-09",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134264",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
- "idAwayTeam": "134304",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-03",
+ "dateEventLocal": "2026-05-03",
+ "strTime": "10:15:00",
+ "strTimeLocal": "12:15:00",
+ "strGroup": "",
+ "idHomeTeam": "133867",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
+ "idAwayTeam": "133759",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18441",
- "strVenue": "Fortuna Sittard Stadion",
+ "strResult": "",
+ "idVenue": "17969",
+ "strVenue": "Kras Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jd9ygo1770369669.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fgi5gs1750407772.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489351",
- "idAPIfootball": "1552402",
- "strTimestamp": "2027-05-09T15:00:00",
- "strEvent": "Utrecht vs Feyenoord",
- "strEventAlternate": "Feyenoord @ Utrecht",
- "strFilename": "Dutch Eredivisie 2027-05-09 Utrecht vs Feyenoord",
+ "idEvent": "2268437",
+ "idAPIfootball": "1381151",
+ "strTimestamp": "2026-05-03T12:30:00",
+ "strEvent": "Fortuna Sittard vs Feyenoord",
+ "strEventAlternate": "Feyenoord @ Fortuna Sittard",
+ "strFilename": "Dutch Eredivisie 2026-05-03 Fortuna Sittard vs Feyenoord",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Utrecht",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Fortuna Sittard",
"strAwayTeam": "Feyenoord",
- "intHomeScore": null,
+ "intHomeScore": "1",
"intRound": "32",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-09",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133764",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-03",
+ "dateEventLocal": "2026-05-03",
+ "strTime": "12:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "134264",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"idAwayTeam": "133758",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15864",
- "strVenue": "Stadion Galgenwaard",
+ "strResult": "",
+ "idVenue": "18441",
+ "strVenue": "Fortuna Sittard Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/gapal11770369978.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489352",
- "idAPIfootball": "1552401",
- "strTimestamp": "2027-05-09T15:00:00",
- "strEvent": "Twente vs Groningen",
- "strEventAlternate": "Groningen @ Twente",
- "strFilename": "Dutch Eredivisie 2027-05-09 Twente vs Groningen",
+ "idEvent": "2268438",
+ "idAPIfootball": "1381152",
+ "strTimestamp": "2026-05-03T14:45:00",
+ "strEvent": "Sparta Rotterdam vs Go Ahead Eagles",
+ "strEventAlternate": "Go Ahead Eagles @ Sparta Rotterdam",
+ "strFilename": "Dutch Eredivisie 2026-05-03 Sparta Rotterdam vs Go Ahead Eagles",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Twente",
- "strAwayTeam": "Groningen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Sparta Rotterdam",
+ "strAwayTeam": "Go Ahead Eagles",
+ "intHomeScore": "2",
"intRound": "32",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-09",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133774",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
- "idAwayTeam": "133762",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-03",
+ "dateEventLocal": "2026-05-03",
+ "strTime": "14:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133866",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "idAwayTeam": "134304",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15859",
- "strVenue": "De Grolsch Veste",
+ "strResult": "",
+ "idVenue": "18581",
+ "strVenue": "Spartastadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/c0zwc71750407783.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489353",
- "idAPIfootball": "1552397",
- "strTimestamp": "2027-05-09T15:00:00",
- "strEvent": "Cambuur vs Heerenveen",
- "strEventAlternate": "Heerenveen @ Cambuur",
- "strFilename": "Dutch Eredivisie 2027-05-09 Cambuur vs Heerenveen",
+ "idEvent": "2268440",
+ "idAPIfootball": "1381154",
+ "strTimestamp": "2026-05-03T12:30:00",
+ "strEvent": "PEC Zwolle vs Heracles Almelo",
+ "strEventAlternate": "Heracles Almelo @ PEC Zwolle",
+ "strFilename": "Dutch Eredivisie 2026-05-03 PEC Zwolle vs Heracles Almelo",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Cambuur",
- "strAwayTeam": "Heerenveen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PEC Zwolle",
+ "strAwayTeam": "Heracles Almelo",
+ "intHomeScore": "1",
"intRound": "32",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-09",
- "dateEventLocal": null,
- "strTime": "15:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134303",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
- "idAwayTeam": "133759",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-03",
+ "dateEventLocal": "2026-05-03",
+ "strTime": "12:30:00",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133936",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "133766",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "34141",
- "strVenue": "Kooi Stadion",
+ "strResult": "",
+ "idVenue": "18579",
+ "strVenue": "MAC³PARK Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/f2k5971750407790.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489354",
- "idAPIfootball": "1552405",
- "strTimestamp": "2027-05-16T12:30:00",
- "strEvent": "Ajax vs Sparta Rotterdam",
- "strEventAlternate": "Sparta Rotterdam @ Ajax",
- "strFilename": "Dutch Eredivisie 2027-05-16 Ajax vs Sparta Rotterdam",
+ "idEvent": "2268441",
+ "idAPIfootball": "1381155",
+ "strTimestamp": "2026-05-10T14:45:00",
+ "strEvent": "Ajax vs Utrecht",
+ "strEventAlternate": "Utrecht @ Ajax",
+ "strFilename": "Dutch Eredivisie 2026-05-10 Ajax vs Utrecht",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Ajax",
- "strAwayTeam": "Sparta Rotterdam",
- "intHomeScore": null,
+ "strAwayTeam": "Utrecht",
+ "intHomeScore": "1",
"intRound": "33",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-16",
- "dateEventLocal": null,
- "strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-10",
+ "dateEventLocal": "2026-05-10",
+ "strTime": "14:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
"idHomeTeam": "133772",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
- "idAwayTeam": "133866",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "idAwayTeam": "133764",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "21448",
"strVenue": "Johan Cruijff ArenA",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pjlinl1769670820.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/btoi4e1769670860.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489355",
- "idAPIfootball": "1552407",
- "strTimestamp": "2027-05-16T12:30:00",
- "strEvent": "Excelsior vs ADO Den Haag",
- "strEventAlternate": "ADO Den Haag @ Excelsior",
- "strFilename": "Dutch Eredivisie 2027-05-16 Excelsior vs ADO Den Haag",
+ "idEvent": "2268442",
+ "idAPIfootball": "1381156",
+ "strTimestamp": "2026-05-10T14:45:00",
+ "strEvent": "Excelsior vs FC Volendam",
+ "strEventAlternate": "FC Volendam @ Excelsior",
+ "strFilename": "Dutch Eredivisie 2026-05-10 Excelsior vs FC Volendam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Excelsior",
- "strAwayTeam": "ADO Den Haag",
- "intHomeScore": null,
+ "strAwayTeam": "FC Volendam",
+ "intHomeScore": "1",
"intRound": "33",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-16",
- "dateEventLocal": null,
- "strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "strOfficial": "",
+ "strWeather": "",
+ "dateEvent": "2026-05-10",
+ "dateEventLocal": "2026-05-10",
+ "strTime": "14:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
"idHomeTeam": "133757",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
- "idAwayTeam": "133769",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
+ "idAwayTeam": "133867",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "15862",
"strVenue": "Van Donge and De Roo Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/51chjr1716274514.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7j75b61770369984.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489356",
- "idAPIfootball": "1552410",
- "strTimestamp": "2027-05-16T12:30:00",
- "strEvent": "PSV Eindhoven vs NEC Nijmegen",
- "strEventAlternate": "NEC Nijmegen @ PSV Eindhoven",
- "strFilename": "Dutch Eredivisie 2027-05-16 PSV Eindhoven vs NEC Nijmegen",
+ "idEvent": "2268443",
+ "idAPIfootball": "1381157",
+ "strTimestamp": "2026-05-10T14:45:00",
+ "strEvent": "Feyenoord vs AZ Alkmaar",
+ "strEventAlternate": "AZ Alkmaar @ Feyenoord",
+ "strFilename": "Dutch Eredivisie 2026-05-10 Feyenoord vs AZ Alkmaar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PSV Eindhoven",
- "strAwayTeam": "NEC Nijmegen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Feyenoord",
+ "strAwayTeam": "AZ Alkmaar",
+ "intHomeScore": "1",
"intRound": "33",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-16",
- "dateEventLocal": null,
- "strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133768",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
- "idAwayTeam": "133760",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-10",
+ "dateEventLocal": "2026-05-10",
+ "strTime": "14:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133758",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "idAwayTeam": "133767",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15844",
- "strVenue": "Philips Stadion",
+ "strResult": "",
+ "idVenue": "15855",
+ "strVenue": "Stadion Feyenoord",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/rk9un61770369925.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ks9clg1770369990.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489357",
- "idAPIfootball": "1552406",
- "strTimestamp": "2027-05-16T12:30:00",
- "strEvent": "AZ Alkmaar vs PEC Zwolle",
- "strEventAlternate": "PEC Zwolle @ AZ Alkmaar",
- "strFilename": "Dutch Eredivisie 2027-05-16 AZ Alkmaar vs PEC Zwolle",
+ "idEvent": "2268444",
+ "idAPIfootball": "1381158",
+ "strTimestamp": "2026-05-10T14:45:00",
+ "strEvent": "Go Ahead Eagles vs PSV Eindhoven",
+ "strEventAlternate": "PSV Eindhoven @ Go Ahead Eagles",
+ "strFilename": "Dutch Eredivisie 2026-05-10 Go Ahead Eagles vs PSV Eindhoven",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "AZ Alkmaar",
- "strAwayTeam": "PEC Zwolle",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Go Ahead Eagles",
+ "strAwayTeam": "PSV Eindhoven",
+ "intHomeScore": "1",
"intRound": "33",
- "intAwayScore": null,
+ "intAwayScore": "4",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-16",
- "dateEventLocal": null,
- "strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133767",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
- "idAwayTeam": "133936",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-10",
+ "dateEventLocal": "2026-05-10",
+ "strTime": "14:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "134304",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "idAwayTeam": "133768",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15860",
- "strVenue": "AFAS Stadion Alkmaar",
+ "strResult": "",
+ "idVenue": "17966",
+ "strVenue": "De Adelaarshorst",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5ji4df1770369684.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/roh8h71770369995.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489358",
- "idAPIfootball": "1552409",
- "strTimestamp": "2027-05-16T12:30:00",
- "strEvent": "Groningen vs Cambuur",
- "strEventAlternate": "Cambuur @ Groningen",
- "strFilename": "Dutch Eredivisie 2027-05-16 Groningen vs Cambuur",
+ "idEvent": "2268445",
+ "idAPIfootball": "1381159",
+ "strTimestamp": "2026-05-10T14:45:00",
+ "strEvent": "Groningen vs NEC Nijmegen",
+ "strEventAlternate": "NEC Nijmegen @ Groningen",
+ "strFilename": "Dutch Eredivisie 2026-05-10 Groningen vs NEC Nijmegen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Groningen",
- "strAwayTeam": "Cambuur",
- "intHomeScore": null,
+ "strAwayTeam": "NEC Nijmegen",
+ "intHomeScore": "2",
"intRound": "33",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-16",
- "dateEventLocal": null,
- "strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-10",
+ "dateEventLocal": "2026-05-10",
+ "strTime": "14:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
"idHomeTeam": "133762",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
- "idAwayTeam": "134303",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
+ "idAwayTeam": "133760",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "21331",
"strVenue": "Euroborg",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zrs6nh1750407798.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489359",
- "idAPIfootball": "1552411",
- "strTimestamp": "2027-05-16T12:30:00",
- "strEvent": "Fortuna Sittard vs Willem II",
- "strEventAlternate": "Willem II @ Fortuna Sittard",
- "strFilename": "Dutch Eredivisie 2027-05-16 Fortuna Sittard vs Willem II",
+ "idEvent": "2268447",
+ "idAPIfootball": "1381161",
+ "strTimestamp": "2026-05-10T14:45:00",
+ "strEvent": "Fortuna Sittard vs PEC Zwolle",
+ "strEventAlternate": "PEC Zwolle @ Fortuna Sittard",
+ "strFilename": "Dutch Eredivisie 2026-05-10 Fortuna Sittard vs PEC Zwolle",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
"strHomeTeam": "Fortuna Sittard",
- "strAwayTeam": "Willem II",
- "intHomeScore": null,
+ "strAwayTeam": "PEC Zwolle",
+ "intHomeScore": "3",
"intRound": "33",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-16",
- "dateEventLocal": null,
- "strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-10",
+ "dateEventLocal": "2026-05-10",
+ "strTime": "14:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
"idHomeTeam": "134264",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
- "idAwayTeam": "133827",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
+ "idAwayTeam": "133936",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
+ "strResult": "",
"idVenue": "18441",
"strVenue": "Fortuna Sittard Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/k0c1a41625514311.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2atlja1770370001.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489360",
- "idAPIfootball": "1552413",
- "strTimestamp": "2027-05-16T12:30:00",
- "strEvent": "Utrecht vs Telstar",
- "strEventAlternate": "Telstar @ Utrecht",
- "strFilename": "Dutch Eredivisie 2027-05-16 Utrecht vs Telstar",
+ "idEvent": "2268448",
+ "idAPIfootball": "1381162",
+ "strTimestamp": "2026-05-10T14:45:00",
+ "strEvent": "SC Telstar vs Heracles Almelo",
+ "strEventAlternate": "Heracles Almelo @ SC Telstar",
+ "strFilename": "Dutch Eredivisie 2026-05-10 SC Telstar vs Heracles Almelo",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Utrecht",
- "strAwayTeam": "Telstar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "SC Telstar",
+ "strAwayTeam": "Heracles Almelo",
+ "intHomeScore": "3",
"intRound": "33",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-16",
- "dateEventLocal": null,
- "strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133764",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
- "idAwayTeam": "138004",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-10",
+ "dateEventLocal": "2026-05-10",
+ "strTime": "14:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "138004",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
+ "idAwayTeam": "133766",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15864",
- "strVenue": "Stadion Galgenwaard",
+ "strResult": "",
+ "idVenue": "17957",
+ "strVenue": "711 Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xyxs3i1750407805.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489361",
- "idAPIfootball": "1552408",
- "strTimestamp": "2027-05-16T12:30:00",
- "strEvent": "Go Ahead Eagles vs Heerenveen",
- "strEventAlternate": "Heerenveen @ Go Ahead Eagles",
- "strFilename": "Dutch Eredivisie 2027-05-16 Go Ahead Eagles vs Heerenveen",
+ "idEvent": "2268449",
+ "idAPIfootball": "1381163",
+ "strTimestamp": "2026-05-10T14:45:00",
+ "strEvent": "Twente vs Sparta Rotterdam",
+ "strEventAlternate": "Sparta Rotterdam @ Twente",
+ "strFilename": "Dutch Eredivisie 2026-05-10 Twente vs Sparta Rotterdam",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Go Ahead Eagles",
- "strAwayTeam": "Heerenveen",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Twente",
+ "strAwayTeam": "Sparta Rotterdam",
+ "intHomeScore": "4",
"intRound": "33",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-16",
- "dateEventLocal": null,
- "strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134304",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
- "idAwayTeam": "133759",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "strWeather": "",
+ "dateEvent": "2026-05-10",
+ "dateEventLocal": "2026-05-10",
+ "strTime": "14:45:00",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133774",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "idAwayTeam": "133866",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17966",
- "strVenue": "De Adelaarshorst",
+ "strResult": "",
+ "idVenue": "15859",
+ "strVenue": "De Grolsch Veste",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/gnliac1750407809.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489362",
- "idAPIfootball": "1552412",
- "strTimestamp": "2027-05-16T12:30:00",
- "strEvent": "Twente vs Feyenoord",
- "strEventAlternate": "Feyenoord @ Twente",
- "strFilename": "Dutch Eredivisie 2027-05-16 Twente vs Feyenoord",
+ "idEvent": "2268446",
+ "idAPIfootball": "1381160",
+ "strTimestamp": "2026-05-11T12:30:00",
+ "strEvent": "NAC Breda vs Heerenveen",
+ "strEventAlternate": "Heerenveen @ NAC Breda",
+ "strFilename": "Dutch Eredivisie 2026-05-11 NAC Breda vs Heerenveen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Twente",
- "strAwayTeam": "Feyenoord",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NAC Breda",
+ "strAwayTeam": "Heerenveen",
+ "intHomeScore": "2",
"intRound": "33",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-16",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-11",
+ "dateEventLocal": "2026-05-10",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133774",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
- "idAwayTeam": "133758",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "strTimeLocal": "16:45:00",
+ "strGroup": "",
+ "idHomeTeam": "133773",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
+ "idAwayTeam": "133759",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15859",
- "strVenue": "De Grolsch Veste",
+ "strResult": "",
+ "idVenue": "15866",
+ "strVenue": "Rat Verlegh Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/j6e0c81750407802.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489363",
- "idAPIfootball": "1552422",
- "strTimestamp": "2027-05-23T12:30:00",
- "strEvent": "PEC Zwolle vs Twente",
- "strEventAlternate": "Twente @ PEC Zwolle",
- "strFilename": "Dutch Eredivisie 2027-05-23 PEC Zwolle vs Twente",
+ "idEvent": "2268450",
+ "idAPIfootball": "1381164",
+ "strTimestamp": "2026-05-17T12:30:00",
+ "strEvent": "AZ Alkmaar vs NAC Breda",
+ "strEventAlternate": "NAC Breda @ AZ Alkmaar",
+ "strFilename": "Dutch Eredivisie 2026-05-17 AZ Alkmaar vs NAC Breda",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "PEC Zwolle",
- "strAwayTeam": "Twente",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "AZ Alkmaar",
+ "strAwayTeam": "NAC Breda",
+ "intHomeScore": "3",
"intRound": "34",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-23",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-17",
+ "dateEventLocal": "2026-05-17",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133936",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
- "idAwayTeam": "133774",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133767",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "idAwayTeam": "133773",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ute4en1544965805.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18579",
- "strVenue": "MAC³PARK Stadion",
+ "strResult": "",
+ "idVenue": "15860",
+ "strVenue": "AFAS Stadion Alkmaar",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/oigp5l1750407812.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489364",
- "idAPIfootball": "1552421",
- "strTimestamp": "2027-05-23T12:30:00",
- "strEvent": "Willem II vs Go Ahead Eagles",
- "strEventAlternate": "Go Ahead Eagles @ Willem II",
- "strFilename": "Dutch Eredivisie 2027-05-23 Willem II vs Go Ahead Eagles",
+ "idEvent": "2268451",
+ "idAPIfootball": "1381165",
+ "strTimestamp": "2026-05-17T12:30:00",
+ "strEvent": "FC Volendam vs SC Telstar",
+ "strEventAlternate": "SC Telstar @ FC Volendam",
+ "strFilename": "Dutch Eredivisie 2026-05-17 FC Volendam vs SC Telstar",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Willem II",
- "strAwayTeam": "Go Ahead Eagles",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "FC Volendam",
+ "strAwayTeam": "SC Telstar",
+ "intHomeScore": "1",
"intRound": "34",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-23",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-17",
+ "dateEventLocal": "2026-05-17",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133827",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ushlnc1666107465.png",
- "idAwayTeam": "134304",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133867",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rdouic1625167940.png",
+ "idAwayTeam": "138004",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15856",
- "strVenue": "Koning Willem II Stadion",
+ "strResult": "",
+ "idVenue": "17969",
+ "strVenue": "Kras Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/miei031625514252.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/gdcq4p1750407816.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489365",
- "idAPIfootball": "1552415",
- "strTimestamp": "2027-05-23T12:30:00",
- "strEvent": "ADO Den Haag vs AZ Alkmaar",
- "strEventAlternate": "AZ Alkmaar @ ADO Den Haag",
- "strFilename": "Dutch Eredivisie 2027-05-23 ADO Den Haag vs AZ Alkmaar",
+ "idEvent": "2268452",
+ "idAPIfootball": "1381166",
+ "strTimestamp": "2026-05-17T12:30:00",
+ "strEvent": "Heerenveen vs Ajax",
+ "strEventAlternate": "Ajax @ Heerenveen",
+ "strFilename": "Dutch Eredivisie 2026-05-17 Heerenveen vs Ajax",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "ADO Den Haag",
- "strAwayTeam": "AZ Alkmaar",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heerenveen",
+ "strAwayTeam": "Ajax",
+ "intHomeScore": "0",
"intRound": "34",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-23",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-17",
+ "dateEventLocal": "2026-05-17",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133769",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vpvtqt1473534732.png",
- "idAwayTeam": "133767",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wtqwvv1473534757.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133759",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
+ "idAwayTeam": "133772",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15843",
- "strVenue": "Cars Jeans Stadion",
+ "strResult": "",
+ "idVenue": "15861",
+ "strVenue": "Abe Lenstra Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/c72smh1601658777.jpg",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zne8811769670863.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489366",
- "idAPIfootball": "1552416",
- "strTimestamp": "2027-05-23T12:30:00",
- "strEvent": "Feyenoord vs Groningen",
- "strEventAlternate": "Groningen @ Feyenoord",
- "strFilename": "Dutch Eredivisie 2027-05-23 Feyenoord vs Groningen",
+ "idEvent": "2268453",
+ "idAPIfootball": "1381167",
+ "strTimestamp": "2026-05-17T12:30:00",
+ "strEvent": "Heracles Almelo vs Groningen",
+ "strEventAlternate": "Groningen @ Heracles Almelo",
+ "strFilename": "Dutch Eredivisie 2026-05-17 Heracles Almelo vs Groningen",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Feyenoord",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Heracles Almelo",
"strAwayTeam": "Groningen",
- "intHomeScore": null,
+ "intHomeScore": "1",
"intRound": "34",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-23",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-17",
+ "dateEventLocal": "2026-05-17",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133758",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133766",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vyyvss1473534851.png",
"idAwayTeam": "133762",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/f36qnp1666107447.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15855",
- "strVenue": "Stadion Feyenoord",
+ "strResult": "",
+ "idVenue": "18584",
+ "strVenue": "Asito Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/tbz5zp1750407824.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489367",
- "idAPIfootball": "1552417",
- "strTimestamp": "2027-05-23T12:30:00",
- "strEvent": "Heerenveen vs PSV Eindhoven",
- "strEventAlternate": "PSV Eindhoven @ Heerenveen",
- "strFilename": "Dutch Eredivisie 2027-05-23 Heerenveen vs PSV Eindhoven",
+ "idEvent": "2268454",
+ "idAPIfootball": "1381168",
+ "strTimestamp": "2026-05-17T12:30:00",
+ "strEvent": "NEC Nijmegen vs Go Ahead Eagles",
+ "strEventAlternate": "Go Ahead Eagles @ NEC Nijmegen",
+ "strFilename": "Dutch Eredivisie 2026-05-17 NEC Nijmegen vs Go Ahead Eagles",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Heerenveen",
- "strAwayTeam": "PSV Eindhoven",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "NEC Nijmegen",
+ "strAwayTeam": "Go Ahead Eagles",
+ "intHomeScore": "2",
"intRound": "34",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-23",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-17",
+ "dateEventLocal": "2026-05-17",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133759",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/surtsx1473534841.png",
- "idAwayTeam": "133768",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133760",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
+ "idAwayTeam": "134304",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3hq2cy1685597026.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "15861",
- "strVenue": "Abe Lenstra Stadion",
+ "strResult": "",
+ "idVenue": "17971",
+ "strVenue": "Goffertstadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8o364v1770370006.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489368",
- "idAPIfootball": "1552418",
- "strTimestamp": "2027-05-23T12:30:00",
- "strEvent": "NEC Nijmegen vs Utrecht",
- "strEventAlternate": "Utrecht @ NEC Nijmegen",
- "strFilename": "Dutch Eredivisie 2027-05-23 NEC Nijmegen vs Utrecht",
+ "idEvent": "2268455",
+ "idAPIfootball": "1381169",
+ "strTimestamp": "2026-05-17T12:30:00",
+ "strEvent": "PSV Eindhoven vs Twente",
+ "strEventAlternate": "Twente @ PSV Eindhoven",
+ "strFilename": "Dutch Eredivisie 2026-05-17 PSV Eindhoven vs Twente",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "NEC Nijmegen",
- "strAwayTeam": "Utrecht",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PSV Eindhoven",
+ "strAwayTeam": "Twente",
+ "intHomeScore": "5",
"intRound": "34",
- "intAwayScore": null,
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-23",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-17",
+ "dateEventLocal": "2026-05-17",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133760",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/t5qjle1701019868.png",
- "idAwayTeam": "133764",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133768",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfsz6i1721297428.png",
+ "idAwayTeam": "133774",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rsrxrt1473534783.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17971",
- "strVenue": "Goffertstadion",
+ "strResult": "",
+ "idVenue": "15844",
+ "strVenue": "Philips Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/m5wk3x1750407828.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489369",
- "idAPIfootball": "1552414",
- "strTimestamp": "2027-05-23T12:30:00",
- "strEvent": "Cambuur vs Ajax",
- "strEventAlternate": "Ajax @ Cambuur",
- "strFilename": "Dutch Eredivisie 2027-05-23 Cambuur vs Ajax",
+ "idEvent": "2268456",
+ "idAPIfootball": "1381170",
+ "strTimestamp": "2026-05-17T12:30:00",
+ "strEvent": "Sparta Rotterdam vs Excelsior",
+ "strEventAlternate": "Excelsior @ Sparta Rotterdam",
+ "strFilename": "Dutch Eredivisie 2026-05-17 Sparta Rotterdam vs Excelsior",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Cambuur",
- "strAwayTeam": "Ajax",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Sparta Rotterdam",
+ "strAwayTeam": "Excelsior",
+ "intHomeScore": "2",
"intRound": "34",
- "intAwayScore": null,
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-23",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-17",
+ "dateEventLocal": "2026-05-17",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134303",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/b3rap31579463652.png",
- "idAwayTeam": "133772",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/zg9tii1755495289.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133866",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "idAwayTeam": "133757",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "34141",
- "strVenue": "Kooi Stadion",
+ "strResult": "",
+ "idVenue": "18581",
+ "strVenue": "Spartastadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/y4f71q1750407831.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489370",
- "idAPIfootball": "1552419",
- "strTimestamp": "2027-05-23T12:30:00",
- "strEvent": "Sparta Rotterdam vs Fortuna Sittard",
- "strEventAlternate": "Fortuna Sittard @ Sparta Rotterdam",
- "strFilename": "Dutch Eredivisie 2027-05-23 Sparta Rotterdam vs Fortuna Sittard",
+ "idEvent": "2268457",
+ "idAPIfootball": "1381171",
+ "strTimestamp": "2026-05-17T12:30:00",
+ "strEvent": "Utrecht vs Fortuna Sittard",
+ "strEventAlternate": "Fortuna Sittard @ Utrecht",
+ "strFilename": "Dutch Eredivisie 2026-05-17 Utrecht vs Fortuna Sittard",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Sparta Rotterdam",
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "Utrecht",
"strAwayTeam": "Fortuna Sittard",
- "intHomeScore": null,
+ "intHomeScore": "2",
"intRound": "34",
- "intAwayScore": null,
+ "intAwayScore": "0",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-23",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-17",
+ "dateEventLocal": "2026-05-17",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "133866",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upluv31586362224.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133764",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yuhha71625167104.png",
"idAwayTeam": "134264",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/aqr7it1685596947.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "18581",
- "strVenue": "Spartastadion",
+ "strResult": "",
+ "idVenue": "15864",
+ "strVenue": "Stadion Galgenwaard",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/h5juxq1750407835.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
},
{
- "idEvent": "2489371",
- "idAPIfootball": "1552420",
- "strTimestamp": "2027-05-23T12:30:00",
- "strEvent": "Telstar vs Excelsior",
- "strEventAlternate": "Excelsior @ Telstar",
- "strFilename": "Dutch Eredivisie 2027-05-23 Telstar vs Excelsior",
+ "idEvent": "2268458",
+ "idAPIfootball": "1381172",
+ "strTimestamp": "2026-05-17T12:30:00",
+ "strEvent": "PEC Zwolle vs Feyenoord",
+ "strEventAlternate": "Feyenoord @ PEC Zwolle",
+ "strFilename": "Dutch Eredivisie 2026-05-17 PEC Zwolle vs Feyenoord",
"strSport": "Soccer",
"idLeague": "4337",
"strLeague": "Dutch Eredivisie",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/5cdsu21725984946.png",
- "strSeason": "2026-2027",
- "strDescriptionEN": null,
- "strHomeTeam": "Telstar",
- "strAwayTeam": "Excelsior",
- "intHomeScore": null,
+ "strSeason": "2025-2026",
+ "strDescriptionEN": "",
+ "strHomeTeam": "PEC Zwolle",
+ "strAwayTeam": "Feyenoord",
+ "intHomeScore": "0",
"intRound": "34",
- "intAwayScore": null,
+ "intAwayScore": "2",
"intSpectators": null,
"strOfficial": "",
- "strWeather": null,
- "dateEvent": "2027-05-23",
- "dateEventLocal": null,
+ "strWeather": "",
+ "dateEvent": "2026-05-17",
+ "dateEventLocal": "2026-05-17",
"strTime": "12:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "138004",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xg1ss31579463659.png",
- "idAwayTeam": "133757",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bmbn9v1625172555.png",
+ "strTimeLocal": "14:30:00",
+ "strGroup": "",
+ "idHomeTeam": "133936",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qpvqwy1473534822.png",
+ "idAwayTeam": "133758",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uturtx1473534803.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": null,
- "idVenue": "17957",
- "strVenue": "711 Stadion",
+ "strResult": "",
+ "idVenue": "18579",
+ "strVenue": "MAC³PARK Stadion",
"strCountry": "The Netherlands",
- "strCity": null,
+ "strCity": "",
"strPoster": "",
"strSquare": "",
"strFanart": null,
- "strThumb": "",
+ "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/el1fma1770370032.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
+ "strTweet1": "",
+ "strVideo": "",
+ "strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
}
diff --git a/lib/data/sports/4339.json b/lib/data/sports/4339.json
index 8bc8ef6..c41e5a5 100644
--- a/lib/data/sports/4339.json
+++ b/lib/data/sports/4339.json
@@ -1,7 +1,7 @@
{
"leagueId": "4339",
"leagueName": "Turkish Super Lig",
- "updatedAt": "2026-06-12T14:49:39.405Z",
+ "updatedAt": "2026-06-11T07:03:42.951Z",
"events": [
{
"idEvent": "2282780",
diff --git a/lib/data/sports/4344.json b/lib/data/sports/4344.json
index 999ee86..aea3381 100644
--- a/lib/data/sports/4344.json
+++ b/lib/data/sports/4344.json
@@ -1,7 +1,7 @@
{
"leagueId": "4344",
"leagueName": "Primeira Liga",
- "updatedAt": "2026-06-12T14:43:47.558Z",
+ "updatedAt": "2026-06-11T02:29:50.174Z",
"events": [
{
"idEvent": "2283332",
@@ -350,9 +350,9 @@
"idEvent": "2283335",
"idAPIfootball": "1396243",
"strTimestamp": "2025-08-11T19:45:00",
- "strEvent": "Porto vs Vitória de Guimarães",
+ "strEvent": "FC Porto vs Vitória de Guimarães",
"strEventAlternate": "Vitória de Guimarães @ FC Porto",
- "strFilename": "Portuguese Primeira Liga 2025-08-11 Porto vs Vitória de Guimarães",
+ "strFilename": "Portuguese Primeira Liga 2025-08-11 FC Porto vs Vitória de Guimarães",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -422,7 +422,7 @@
"strTimeLocal": "20:15:00",
"strGroup": "",
"idHomeTeam": "134108",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"idAwayTeam": "134107",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ngbklq1628851239.png",
"intScore": null,
@@ -522,7 +522,7 @@
"idHomeTeam": "140008",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2tx5621626095555.png",
"idAwayTeam": "134108",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -840,9 +840,9 @@
"idEvent": "2283341",
"idAPIfootball": "1396249",
"strTimestamp": "2025-08-18T19:15:00",
- "strEvent": "Gil Vicente vs Porto",
+ "strEvent": "Gil Vicente vs FC Porto",
"strEventAlternate": "FC Porto @ Gil Vicente",
- "strFilename": "Portuguese Primeira Liga 2025-08-18 Gil Vicente vs Porto",
+ "strFilename": "Portuguese Primeira Liga 2025-08-18 Gil Vicente vs FC Porto",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -961,7 +961,7 @@
"strTimeLocal": "20:30:00",
"strGroup": "",
"idHomeTeam": "134108",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"idAwayTeam": "135502",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/o7nqff1628856081.png",
"intScore": null,
@@ -1183,9 +1183,9 @@
"idEvent": "2283353",
"idAPIfootball": "1396261",
"strTimestamp": "2025-08-24T17:00:00",
- "strEvent": "Porto vs Casa Pia",
+ "strEvent": "FC Porto vs Casa Pia",
"strEventAlternate": "Casa Pia @ FC Porto",
- "strFilename": "Portuguese Primeira Liga 2025-08-24 Porto vs Casa Pia",
+ "strFilename": "Portuguese Primeira Liga 2025-08-24 FC Porto vs Casa Pia",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -1477,9 +1477,9 @@
"idEvent": "2283362",
"idAPIfootball": "1396270",
"strTimestamp": "2025-08-30T19:30:00",
- "strEvent": "Sporting CP vs Porto",
+ "strEvent": "Sporting CP vs FC Porto",
"strEventAlternate": "FC Porto @ Sporting CP",
- "strFilename": "Portuguese Primeira Liga 2025-08-30 Sporting CP vs Porto",
+ "strFilename": "Portuguese Primeira Liga 2025-08-30 Sporting CP vs FC Porto",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -1600,7 +1600,7 @@
"idHomeTeam": "143704",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/6ljryf1691990098.png",
"idAwayTeam": "134108",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -1843,7 +1843,7 @@
"strTimeLocal": "20:15:00",
"strGroup": "",
"idHomeTeam": "134108",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"idAwayTeam": "136192",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/7337a61724860742.png",
"intScore": null,
@@ -1967,9 +1967,9 @@
"idEvent": "2283372",
"idAPIfootball": "1396280",
"strTimestamp": "2025-09-13T17:00:00",
- "strEvent": "Porto vs Nacional de Madeira",
+ "strEvent": "FC Porto vs Nacional de Madeira",
"strEventAlternate": "Nacional de Madeira @ FC Porto",
- "strFilename": "Portuguese Primeira Liga 2025-09-13 Porto vs Nacional de Madeira",
+ "strFilename": "Portuguese Primeira Liga 2025-09-13 FC Porto vs Nacional de Madeira",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -2212,9 +2212,9 @@
"idEvent": "2283378",
"idAPIfootball": "1396286",
"strTimestamp": "2025-09-19T19:15:00",
- "strEvent": "Rio Ave vs Porto",
+ "strEvent": "Rio Ave vs FC Porto",
"strEventAlternate": "FC Porto @ Rio Ave",
- "strFilename": "Portuguese Primeira Liga 2025-09-19 Rio Ave vs Porto",
+ "strFilename": "Portuguese Primeira Liga 2025-09-19 Rio Ave vs FC Porto",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -2286,7 +2286,7 @@
"idHomeTeam": "147479",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xp8oqb1688676544.png",
"idAwayTeam": "134108",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -2676,7 +2676,7 @@
"strTimeLocal": "20:15:00",
"strGroup": "",
"idHomeTeam": "134108",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"idAwayTeam": "134113",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/88bsg41626201503.png",
"intScore": null,
@@ -3045,9 +3045,9 @@
"idEvent": "2283384",
"idAPIfootball": "1396292",
"strTimestamp": "2025-09-29T19:00:00",
- "strEvent": "Arouca vs Porto",
+ "strEvent": "Arouca vs FC Porto",
"strEventAlternate": "FC Porto @ Arouca",
- "strFilename": "Portuguese Primeira Liga 2025-09-29 Arouca vs Porto",
+ "strFilename": "Portuguese Primeira Liga 2025-09-29 Arouca vs FC Porto",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -3388,9 +3388,9 @@
"idEvent": "2283395",
"idAPIfootball": "1396303",
"strTimestamp": "2025-10-05T20:15:00",
- "strEvent": "Porto vs Benfica",
+ "strEvent": "FC Porto vs Benfica",
"strEventAlternate": "Benfica @ FC Porto",
- "strFilename": "Portuguese Primeira Liga 2025-10-05 Porto vs Benfica",
+ "strFilename": "Portuguese Primeira Liga 2025-10-05 FC Porto vs Benfica",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -3413,7 +3413,7 @@
"idHomeTeam": "134114",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xu47rb1628855600.png",
"idAwayTeam": "134108",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -3607,7 +3607,7 @@
"strTimeLocal": "20:30:00",
"strGroup": "",
"idHomeTeam": "134108",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"idAwayTeam": "134387",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vgbzjq1628853833.png",
"intScore": null,
@@ -3927,9 +3927,9 @@
"idEvent": "2283407",
"idAPIfootball": "1396315",
"strTimestamp": "2025-10-27T20:15:00",
- "strEvent": "Moreirense vs Porto",
+ "strEvent": "Moreirense vs FC Porto",
"strEventAlternate": "FC Porto @ Moreirense",
- "strFilename": "Portuguese Primeira Liga 2025-10-27 Moreirense vs Porto",
+ "strFilename": "Portuguese Primeira Liga 2025-10-27 Moreirense vs FC Porto",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -4197,7 +4197,7 @@
"idHomeTeam": "134115",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/af52z61628855707.png",
"idAwayTeam": "134108",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -4319,9 +4319,9 @@
"idEvent": "2283413",
"idAPIfootball": "1396321",
"strTimestamp": "2025-11-02T20:30:00",
- "strEvent": "Porto vs Braga",
+ "strEvent": "FC Porto vs Braga",
"strEventAlternate": "Braga @ FC Porto",
- "strFilename": "Portuguese Primeira Liga 2025-11-02 Porto vs Braga",
+ "strFilename": "Portuguese Primeira Liga 2025-11-02 FC Porto vs Braga",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -4685,7 +4685,7 @@
"strTimeLocal": "20:30:00",
"strGroup": "",
"idHomeTeam": "134108",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"idAwayTeam": "138864",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/d8ugsc1678717133.png",
"intScore": null,
@@ -4809,9 +4809,9 @@
"idEvent": "2283425",
"idAPIfootball": "1396333",
"strTimestamp": "2025-11-09T18:00:00",
- "strEvent": "Famalicao vs Porto",
+ "strEvent": "Famalicao vs FC Porto",
"strEventAlternate": "FC Porto @ Famalicao",
- "strFilename": "Portuguese Primeira Liga 2025-11-09 Famalicao vs Porto",
+ "strFilename": "Portuguese Primeira Liga 2025-11-09 Famalicao vs FC Porto",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -5079,7 +5079,7 @@
"idHomeTeam": "134109",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1ln5fe1628850538.png",
"idAwayTeam": "134108",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -5103,9 +5103,9 @@
"idEvent": "2283430",
"idAPIfootball": "1396338",
"strTimestamp": "2025-11-30T20:30:00",
- "strEvent": "Porto vs Estoril Praia",
+ "strEvent": "FC Porto vs Estoril Praia",
"strEventAlternate": "Estoril Praia @ FC Porto",
- "strFilename": "Portuguese Primeira Liga 2025-11-30 Porto vs Estoril Praia",
+ "strFilename": "Portuguese Primeira Liga 2025-11-30 FC Porto vs Estoril Praia",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -5322,7 +5322,7 @@
"strTimeLocal": "20:15:00",
"strGroup": "",
"idHomeTeam": "134108",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"idAwayTeam": "135708",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ohj6ih1628855978.png",
"intScore": null,
@@ -5642,9 +5642,9 @@
"idEvent": "2283444",
"idAPIfootball": "1396352",
"strTimestamp": "2025-12-07T20:30:00",
- "strEvent": "Tondela vs Porto",
+ "strEvent": "Tondela vs FC Porto",
"strEventAlternate": "FC Porto @ Tondela",
- "strFilename": "Portuguese Primeira Liga 2025-12-07 Tondela vs Porto",
+ "strFilename": "Portuguese Primeira Liga 2025-12-07 Tondela vs FC Porto",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -6010,7 +6010,7 @@
"idHomeTeam": "134112",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yrquxu1471878153.png",
"idAwayTeam": "134108",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -6083,9 +6083,9 @@
"idEvent": "2283450",
"idAPIfootball": "1396358",
"strTimestamp": "2025-12-15T20:45:00",
- "strEvent": "Porto vs Estrela Amadora",
+ "strEvent": "FC Porto vs Estrela Amadora",
"strEventAlternate": "Estrela Amadora @ FC Porto",
- "strFilename": "Portuguese Primeira Liga 2025-12-15 Porto vs Estrela Amadora",
+ "strFilename": "Portuguese Primeira Liga 2025-12-15 FC Porto vs Estrela Amadora",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -6475,9 +6475,9 @@
"idEvent": "2283456",
"idAPIfootball": "1396364",
"strTimestamp": "2025-12-22T18:45:00",
- "strEvent": "Alverca vs Porto",
+ "strEvent": "Alverca vs FC Porto",
"strEventAlternate": "FC Porto @ Alverca",
- "strFilename": "Portuguese Primeira Liga 2025-12-22 Alverca vs Porto",
+ "strFilename": "Portuguese Primeira Liga 2025-12-22 Alverca vs FC Porto",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -6547,7 +6547,7 @@
"strTimeLocal": "20:45:00",
"strGroup": "",
"idHomeTeam": "134108",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"idAwayTeam": "136854",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/a3f4er1563653256.png",
"intScore": null,
@@ -6794,7 +6794,7 @@
"idHomeTeam": "134098",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/8g4aod1678717261.png",
"idAwayTeam": "134108",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -6916,9 +6916,9 @@
"idEvent": "2283469",
"idAPIfootball": "1396377",
"strTimestamp": "2025-12-29T20:15:00",
- "strEvent": "Porto vs AVS",
+ "strEvent": "FC Porto vs AVS",
"strEventAlternate": "AVS @ FC Porto",
- "strFilename": "Portuguese Primeira Liga 2025-12-29 Porto vs AVS",
+ "strFilename": "Portuguese Primeira Liga 2025-12-29 FC Porto vs AVS",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -7233,7 +7233,7 @@
"strTimeLocal": "18:00:00",
"strGroup": "",
"idHomeTeam": "134108",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"idAwayTeam": "134106",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lq9h8m1628854051.png",
"intScore": null,
@@ -7455,9 +7455,9 @@
"idEvent": "2283479",
"idAPIfootball": "1396387",
"strTimestamp": "2026-01-04T18:00:00",
- "strEvent": "Santa Clara vs Porto",
+ "strEvent": "Santa Clara vs FC Porto",
"strEventAlternate": "FC Porto @ Santa Clara",
- "strFilename": "Portuguese Primeira Liga 2026-01-04 Santa Clara vs Porto",
+ "strFilename": "Portuguese Primeira Liga 2026-01-04 Santa Clara vs FC Porto",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -7725,7 +7725,7 @@
"idHomeTeam": "134107",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ngbklq1628851239.png",
"idAwayTeam": "134108",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -7847,9 +7847,9 @@
"idEvent": "2283490",
"idAPIfootball": "1396398",
"strTimestamp": "2026-01-18T20:30:00",
- "strEvent": "Vitória de Guimarães vs Porto",
+ "strEvent": "Vitória de Guimarães vs FC Porto",
"strEventAlternate": "FC Porto @ Vitória de Guimarães",
- "strFilename": "Portuguese Primeira Liga 2026-01-18 Vitória de Guimarães vs Porto",
+ "strFilename": "Portuguese Primeira Liga 2026-01-18 Vitória de Guimarães vs FC Porto",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -8164,7 +8164,7 @@
"strTimeLocal": "18:00:00",
"strGroup": "",
"idHomeTeam": "134108",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"idAwayTeam": "140008",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2tx5621626095555.png",
"intScore": null,
@@ -8337,9 +8337,9 @@
"idEvent": "2283497",
"idAPIfootball": "1396405",
"strTimestamp": "2026-01-26T20:15:00",
- "strEvent": "Porto vs Gil Vicente",
+ "strEvent": "FC Porto vs Gil Vicente",
"strEventAlternate": "Gil Vicente @ FC Porto",
- "strFilename": "Portuguese Primeira Liga 2026-01-26 Porto vs Gil Vicente",
+ "strFilename": "Portuguese Primeira Liga 2026-01-26 FC Porto vs Gil Vicente",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -8705,7 +8705,7 @@
"idHomeTeam": "135502",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/o7nqff1628856081.png",
"idAwayTeam": "134108",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -8778,9 +8778,9 @@
"idEvent": "2283502",
"idAPIfootball": "1396410",
"strTimestamp": "2026-02-02T20:45:00",
- "strEvent": "Casa Pia vs Porto",
+ "strEvent": "Casa Pia vs FC Porto",
"strEventAlternate": "FC Porto @ Casa Pia",
- "strFilename": "Portuguese Primeira Liga 2026-02-02 Casa Pia vs Porto",
+ "strFilename": "Portuguese Primeira Liga 2026-02-02 Casa Pia vs FC Porto",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -9046,7 +9046,7 @@
"strTimeLocal": "20:30:00",
"strGroup": "",
"idHomeTeam": "134108",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"idAwayTeam": "143704",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/6ljryf1691990098.png",
"intScore": null,
@@ -9219,9 +9219,9 @@
"idEvent": "2283515",
"idAPIfootball": "1396423",
"strTimestamp": "2026-02-09T20:45:00",
- "strEvent": "Porto vs Sporting CP",
+ "strEvent": "FC Porto vs Sporting CP",
"strEventAlternate": "Sporting CP @ FC Porto",
- "strFilename": "Portuguese Primeira Liga 2026-02-09 Porto vs Sporting CP",
+ "strFilename": "Portuguese Primeira Liga 2026-02-09 FC Porto vs Sporting CP",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -9293,7 +9293,7 @@
"idHomeTeam": "136192",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/7337a61724860742.png",
"idAwayTeam": "134108",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -9562,9 +9562,9 @@
"idEvent": "2283521",
"idAPIfootball": "1396429",
"strTimestamp": "2026-02-15T15:30:00",
- "strEvent": "Nacional de Madeira vs Porto",
+ "strEvent": "Nacional de Madeira vs FC Porto",
"strEventAlternate": "FC Porto @ Nacional de Madeira",
- "strFilename": "Portuguese Primeira Liga 2026-02-15 Nacional de Madeira vs Porto",
+ "strFilename": "Portuguese Primeira Liga 2026-02-15 Nacional de Madeira vs FC Porto",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -9879,7 +9879,7 @@
"strTimeLocal": "17:00:00",
"strGroup": "",
"idHomeTeam": "134108",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"idAwayTeam": "147479",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xp8oqb1688676544.png",
"intScore": null,
@@ -10052,9 +10052,9 @@
"idEvent": "2283534",
"idAPIfootball": "1396442",
"strTimestamp": "2026-02-22T20:30:00",
- "strEvent": "Porto vs Rio Ave",
+ "strEvent": "FC Porto vs Rio Ave",
"strEventAlternate": "Rio Ave @ FC Porto",
- "strFilename": "Portuguese Primeira Liga 2026-02-22 Porto vs Rio Ave",
+ "strFilename": "Portuguese Primeira Liga 2026-02-22 FC Porto vs Rio Ave",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -10150,9 +10150,9 @@
"idEvent": "2283538",
"idAPIfootball": "1396446",
"strTimestamp": "2026-02-27T18:45:00",
- "strEvent": "Porto vs Arouca",
+ "strEvent": "FC Porto vs Arouca",
"strEventAlternate": "Arouca @ FC Porto",
- "strFilename": "Portuguese Primeira Liga 2026-02-27 Porto vs Arouca",
+ "strFilename": "Portuguese Primeira Liga 2026-02-27 FC Porto vs Arouca",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -10567,7 +10567,7 @@
"idHomeTeam": "134113",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/88bsg41626201503.png",
"idAwayTeam": "134108",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -10836,9 +10836,9 @@
"idEvent": "2283546",
"idAPIfootball": "1396454",
"strTimestamp": "2026-03-08T18:00:00",
- "strEvent": "Benfica vs Porto",
+ "strEvent": "Benfica vs FC Porto",
"strEventAlternate": "FC Porto @ Benfica",
- "strFilename": "Portuguese Primeira Liga 2026-03-08 Benfica vs Porto",
+ "strFilename": "Portuguese Primeira Liga 2026-03-08 Benfica vs FC Porto",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -10859,7 +10859,7 @@
"strTimeLocal": "13:30:00",
"strGroup": "",
"idHomeTeam": "134108",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"idAwayTeam": "134114",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xu47rb1628855600.png",
"intScore": null,
@@ -11057,7 +11057,7 @@
"idHomeTeam": "134387",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vgbzjq1628853833.png",
"idAwayTeam": "134108",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -11228,9 +11228,9 @@
"idEvent": "2283557",
"idAPIfootball": "1396465",
"strTimestamp": "2026-03-15T20:30:00",
- "strEvent": "Porto vs Moreirense",
+ "strEvent": "FC Porto vs Moreirense",
"strEventAlternate": "Moreirense @ FC Porto",
- "strFilename": "Portuguese Primeira Liga 2026-03-15 Porto vs Moreirense",
+ "strFilename": "Portuguese Primeira Liga 2026-03-15 FC Porto vs Moreirense",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -11545,7 +11545,7 @@
"strTimeLocal": "12:30:00",
"strGroup": "",
"idHomeTeam": "134108",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"idAwayTeam": "134115",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/af52z61628855707.png",
"intScore": null,
@@ -11816,9 +11816,9 @@
"idEvent": "2283565",
"idAPIfootball": "1396473",
"strTimestamp": "2026-03-22T20:30:00",
- "strEvent": "Braga vs Porto",
+ "strEvent": "Braga vs FC Porto",
"strEventAlternate": "FC Porto @ Braga",
- "strFilename": "Portuguese Primeira Liga 2026-03-22 Braga vs Porto",
+ "strFilename": "Portuguese Primeira Liga 2026-03-22 Braga vs FC Porto",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -12061,9 +12061,9 @@
"idEvent": "2283574",
"idAPIfootball": "1396482",
"strTimestamp": "2026-04-04T19:30:00",
- "strEvent": "Porto vs Famalicao",
+ "strEvent": "FC Porto vs Famalicao",
"strEventAlternate": "Famalicao @ FC Porto",
- "strFilename": "Portuguese Primeira Liga 2026-04-04 Porto vs Famalicao",
+ "strFilename": "Portuguese Primeira Liga 2026-04-04 FC Porto vs Famalicao",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -12331,7 +12331,7 @@
"idHomeTeam": "138864",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/d8ugsc1678717133.png",
"idAwayTeam": "134108",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -12623,7 +12623,7 @@
"strTimeLocal": "18:00:00",
"strGroup": "",
"idHomeTeam": "134108",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"idAwayTeam": "134109",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/1ln5fe1628850538.png",
"intScore": null,
@@ -12698,9 +12698,9 @@
"idEvent": "2283585",
"idAPIfootball": "1396493",
"strTimestamp": "2026-04-12T19:30:00",
- "strEvent": "Estoril Praia vs Porto",
+ "strEvent": "Estoril Praia vs FC Porto",
"strEventAlternate": "FC Porto @ Estoril Praia",
- "strFilename": "Portuguese Primeira Liga 2026-04-12 Estoril Praia vs Porto",
+ "strFilename": "Portuguese Primeira Liga 2026-04-12 Estoril Praia vs FC Porto",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -13090,9 +13090,9 @@
"idEvent": "2283593",
"idAPIfootball": "1396501",
"strTimestamp": "2026-04-19T19:30:00",
- "strEvent": "Porto vs Tondela",
+ "strEvent": "FC Porto vs Tondela",
"strEventAlternate": "Tondela @ FC Porto",
- "strFilename": "Portuguese Primeira Liga 2026-04-19 Porto vs Tondela",
+ "strFilename": "Portuguese Primeira Liga 2026-04-19 FC Porto vs Tondela",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -13164,7 +13164,7 @@
"idHomeTeam": "135708",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ohj6ih1628855978.png",
"idAwayTeam": "134108",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -13309,7 +13309,7 @@
"strTimeLocal": "18:00:00",
"strGroup": "",
"idHomeTeam": "134108",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"idAwayTeam": "134112",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yrquxu1471878153.png",
"intScore": null,
@@ -13531,9 +13531,9 @@
"idEvent": "2283603",
"idAPIfootball": "1396511",
"strTimestamp": "2026-04-26T17:00:00",
- "strEvent": "Estrela Amadora vs Porto",
+ "strEvent": "Estrela Amadora vs FC Porto",
"strEventAlternate": "FC Porto @ Estrela Amadora",
- "strFilename": "Portuguese Primeira Liga 2026-04-26 Estrela Amadora vs Porto",
+ "strFilename": "Portuguese Primeira Liga 2026-04-26 Estrela Amadora vs FC Porto",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -13752,7 +13752,7 @@
"idHomeTeam": "136854",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/a3f4er1563653256.png",
"idAwayTeam": "134108",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -13776,9 +13776,9 @@
"idEvent": "2283612",
"idAPIfootball": "1396520",
"strTimestamp": "2026-05-02T19:30:00",
- "strEvent": "Porto vs Alverca",
+ "strEvent": "FC Porto vs Alverca",
"strEventAlternate": "Alverca @ FC Porto",
- "strFilename": "Portuguese Primeira Liga 2026-05-02 Porto vs Alverca",
+ "strFilename": "Portuguese Primeira Liga 2026-05-02 FC Porto vs Alverca",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -14119,9 +14119,9 @@
"idEvent": "2283617",
"idAPIfootball": "1396525",
"strTimestamp": "2026-05-10T17:00:00",
- "strEvent": "AVS vs Porto",
+ "strEvent": "AVS vs FC Porto",
"strEventAlternate": "FC Porto @ AVS",
- "strFilename": "Portuguese Primeira Liga 2026-05-10 AVS vs Porto",
+ "strFilename": "Portuguese Primeira Liga 2026-05-10 AVS vs FC Porto",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
@@ -14240,7 +14240,7 @@
"strTimeLocal": "20:15:00",
"strGroup": "",
"idHomeTeam": "134108",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"idAwayTeam": "134098",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/8g4aod1678717261.png",
"intScore": null,
@@ -14732,7 +14732,7 @@
"idHomeTeam": "134106",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lq9h8m1628854051.png",
"idAwayTeam": "134108",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/hj4kyc1781152436.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0pywy21662316682.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -14805,9 +14805,9 @@
"idEvent": "2283631",
"idAPIfootball": "1396539",
"strTimestamp": "2026-05-16T14:30:00",
- "strEvent": "Porto vs Santa Clara",
+ "strEvent": "FC Porto vs Santa Clara",
"strEventAlternate": "Santa Clara @ FC Porto",
- "strFilename": "Portuguese Primeira Liga 2026-05-16 Porto vs Santa Clara",
+ "strFilename": "Portuguese Primeira Liga 2026-05-16 FC Porto vs Santa Clara",
"strSport": "Soccer",
"idLeague": "4344",
"strLeague": "Portuguese Primeira Liga",
diff --git a/lib/data/sports/4346.json b/lib/data/sports/4346.json
index e4d68bc..f4c606f 100644
--- a/lib/data/sports/4346.json
+++ b/lib/data/sports/4346.json
@@ -1,7 +1,7 @@
{
"leagueId": "4346",
"leagueName": "MLS",
- "updatedAt": "2026-06-12T14:45:08.993Z",
+ "updatedAt": "2026-06-11T06:59:07.332Z",
"events": [
{
"idEvent": "2406707",
diff --git a/lib/data/sports/4350.json b/lib/data/sports/4350.json
index 71b493e..420b7b2 100644
--- a/lib/data/sports/4350.json
+++ b/lib/data/sports/4350.json
@@ -1,7 +1,7 @@
{
"leagueId": "4350",
"leagueName": "Liga MX",
- "updatedAt": "2026-06-12T14:45:59.535Z",
+ "updatedAt": "2026-06-11T06:59:57.898Z",
"events": [
{
"idEvent": "2487452",
@@ -48,7 +48,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -97,7 +97,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -146,7 +146,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -195,7 +195,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -244,7 +244,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -293,7 +293,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -342,7 +342,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -391,7 +391,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -440,7 +440,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -489,7 +489,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -538,7 +538,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -587,7 +587,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -636,7 +636,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -685,7 +685,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -734,7 +734,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -783,7 +783,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -832,7 +832,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -881,7 +881,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -930,7 +930,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -979,7 +979,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1028,7 +1028,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1077,7 +1077,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1126,7 +1126,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1175,7 +1175,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1224,7 +1224,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1273,7 +1273,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1322,7 +1322,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1371,7 +1371,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1420,7 +1420,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1469,7 +1469,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1518,7 +1518,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1567,7 +1567,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1616,7 +1616,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1665,7 +1665,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1714,7 +1714,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1763,7 +1763,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1812,7 +1812,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1861,7 +1861,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1910,7 +1910,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -1959,7 +1959,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2008,7 +2008,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2057,7 +2057,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2106,7 +2106,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2155,7 +2155,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2204,7 +2204,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2253,7 +2253,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2302,7 +2302,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2351,7 +2351,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2400,7 +2400,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2449,7 +2449,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2498,7 +2498,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2547,7 +2547,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2596,7 +2596,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2645,7 +2645,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2694,7 +2694,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2743,7 +2743,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2792,7 +2792,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2841,7 +2841,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2890,7 +2890,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2939,7 +2939,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -2988,7 +2988,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3037,7 +3037,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3086,7 +3086,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3135,7 +3135,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3184,7 +3184,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3233,7 +3233,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3282,7 +3282,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3331,7 +3331,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3380,7 +3380,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3429,7 +3429,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3478,7 +3478,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3527,7 +3527,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3576,7 +3576,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3625,7 +3625,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3674,7 +3674,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3723,7 +3723,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3772,7 +3772,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3821,7 +3821,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3870,7 +3870,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3919,7 +3919,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -3968,7 +3968,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4017,7 +4017,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4066,7 +4066,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4115,7 +4115,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4164,7 +4164,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4213,7 +4213,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4262,7 +4262,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4311,7 +4311,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4360,7 +4360,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4409,7 +4409,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4458,7 +4458,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4507,7 +4507,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4556,7 +4556,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4605,7 +4605,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4654,7 +4654,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4703,7 +4703,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4752,7 +4752,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4801,7 +4801,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4850,7 +4850,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4899,7 +4899,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4948,7 +4948,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -4997,7 +4997,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5046,7 +5046,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5095,7 +5095,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5144,7 +5144,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5193,7 +5193,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5242,7 +5242,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5291,7 +5291,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5340,7 +5340,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5389,7 +5389,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5438,7 +5438,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5487,7 +5487,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5536,7 +5536,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5585,7 +5585,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5634,7 +5634,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5683,7 +5683,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5732,7 +5732,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5781,7 +5781,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5830,7 +5830,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5879,7 +5879,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5928,7 +5928,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -5977,7 +5977,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6026,7 +6026,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6075,7 +6075,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6124,7 +6124,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6173,7 +6173,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6222,7 +6222,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6271,7 +6271,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6320,7 +6320,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6369,7 +6369,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6418,7 +6418,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6467,7 +6467,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6516,7 +6516,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6565,7 +6565,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6614,7 +6614,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6663,7 +6663,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6712,7 +6712,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6761,7 +6761,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6810,7 +6810,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6859,7 +6859,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6908,7 +6908,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -6957,7 +6957,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -7006,7 +7006,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -7055,7 +7055,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -7104,7 +7104,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -7153,7 +7153,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -7202,7 +7202,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -7251,7 +7251,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -7300,7 +7300,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -7349,7 +7349,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -7398,7 +7398,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -7447,7 +7447,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -7496,7 +7496,7 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "NS",
+ "strStatus": null,
"strPostponed": "no",
"strLocked": "unlocked"
}
diff --git a/lib/data/sports/4351.json b/lib/data/sports/4351.json
deleted file mode 100644
index dc0eda6..0000000
--- a/lib/data/sports/4351.json
+++ /dev/null
@@ -1,18627 +0,0 @@
-{
- "leagueId": "4351",
- "leagueName": "Brazilian Serie A",
- "updatedAt": "2026-06-12T14:53:09.038Z",
- "events": [
- {
- "idEvent": "2398191",
- "idAPIfootball": "1492110",
- "strTimestamp": "2026-01-28T22:00:00",
- "strEvent": "Atlético Mineiro vs Palmeiras",
- "strEventAlternate": "Palmeiras @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-01-28 Atlético Mineiro vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": "2",
- "intRound": "1",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-01-28",
- "dateEventLocal": "2026-01-28",
- "strTime": "22:00:00",
- "strTimeLocal": "19:00:00",
- "strGroup": "",
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5lrzpt1769682297.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398193",
- "idAPIfootball": "1492112",
- "strTimestamp": "2026-01-28T23:00:00",
- "strEvent": "Chapecoense vs Santos",
- "strEventAlternate": "Santos @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-01-28 Chapecoense vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "Santos",
- "intHomeScore": "4",
- "intRound": "1",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-01-28",
- "dateEventLocal": "2026-01-28",
- "strTime": "23:00:00",
- "strTimeLocal": "20:00:00",
- "strGroup": "",
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/g7qg6t1769682322.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398194",
- "idAPIfootball": "1492113",
- "strTimestamp": "2026-01-28T23:00:00",
- "strEvent": "Corinthians vs Bahia",
- "strEventAlternate": "Bahia @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-01-28 Corinthians vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "Bahia",
- "intHomeScore": "1",
- "intRound": "1",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-01-28",
- "dateEventLocal": "2026-01-28",
- "strTime": "23:00:00",
- "strTimeLocal": "20:00:00",
- "strGroup": "",
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bmh0651769682326.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398195",
- "idAPIfootball": "1492114",
- "strTimestamp": "2026-01-28T22:00:00",
- "strEvent": "Coritiba vs Bragantino",
- "strEventAlternate": "Bragantino @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-01-28 Coritiba vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "Bragantino",
- "intHomeScore": "0",
- "intRound": "1",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-01-28",
- "dateEventLocal": "2026-01-28",
- "strTime": "22:00:00",
- "strTimeLocal": "19:00:00",
- "strGroup": "",
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/clsxcq1769682329.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398196",
- "idAPIfootball": "1492115",
- "strTimestamp": "2026-01-28T22:30:00",
- "strEvent": "Fluminense vs Grêmio",
- "strEventAlternate": "Grêmio @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-01-28 Fluminense vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "Grêmio",
- "intHomeScore": "2",
- "intRound": "1",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-01-28",
- "dateEventLocal": "2026-01-28",
- "strTime": "22:30:00",
- "strTimeLocal": "19:30:00",
- "strGroup": "",
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mgys4j1769682333.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398197",
- "idAPIfootball": "1492116",
- "strTimestamp": "2026-01-28T22:00:00",
- "strEvent": "Internacional vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ Internacional",
- "strFilename": "Brazilian Serie A 2026-01-28 Internacional vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Internacional",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": "0",
- "intRound": "1",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-01-28",
- "dateEventLocal": "2026-01-28",
- "strTime": "22:00:00",
- "strTimeLocal": "19:00:00",
- "strGroup": "",
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0rzeqn1769682337.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398200",
- "idAPIfootball": "1492119",
- "strTimestamp": "2026-01-28T22:00:00",
- "strEvent": "Vitória vs Remo",
- "strEventAlternate": "Remo @ Vitória",
- "strFilename": "Brazilian Serie A 2026-01-28 Vitória vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Vitória",
- "strAwayTeam": "Remo",
- "intHomeScore": "2",
- "intRound": "1",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-01-28",
- "dateEventLocal": "2026-01-28",
- "strTime": "22:00:00",
- "strTimeLocal": "19:00:00",
- "strGroup": "",
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/idfoks1769682348.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398198",
- "idAPIfootball": "1492117",
- "strTimestamp": "2026-01-29T23:00:00",
- "strEvent": "Mirassol vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-01-29 Mirassol vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": "2",
- "intRound": "1",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-01-29",
- "dateEventLocal": "2026-01-29",
- "strTime": "23:00:00",
- "strTimeLocal": "20:00:00",
- "strGroup": "",
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/dtrfkr1769682340.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398199",
- "idAPIfootball": "1492118",
- "strTimestamp": "2026-01-29T00:30:00",
- "strEvent": "São Paulo vs Flamengo",
- "strEventAlternate": "Flamengo @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-01-29 São Paulo vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Flamengo",
- "intHomeScore": "2",
- "intRound": "1",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-01-29",
- "dateEventLocal": "2026-01-28",
- "strTime": "00:30:00",
- "strTimeLocal": "21:30:00",
- "strGroup": "",
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/wnysxd1769682344.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398192",
- "idAPIfootball": "1492111",
- "strTimestamp": "2026-01-30T00:30:00",
- "strEvent": "Botafogo vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-01-30 Botafogo vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": "4",
- "intRound": "1",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-01-30",
- "dateEventLocal": "2026-01-29",
- "strTime": "00:30:00",
- "strTimeLocal": "21:30:00",
- "strGroup": "",
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1vxe6e1769682300.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398203",
- "idAPIfootball": "1492122",
- "strTimestamp": "2026-02-04T22:00:00",
- "strEvent": "Bragantino vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-02-04 Bragantino vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": "1",
- "intRound": "2",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-04",
- "dateEventLocal": "2026-02-04",
- "strTime": "22:00:00",
- "strTimeLocal": "19:00:00",
- "strGroup": "",
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bv9cok1769682358.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398205",
- "idAPIfootball": "1492124",
- "strTimestamp": "2026-02-04T22:00:00",
- "strEvent": "Flamengo vs Internacional",
- "strEventAlternate": "Internacional @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-02-04 Flamengo vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "Internacional",
- "intHomeScore": "1",
- "intRound": "2",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-04",
- "dateEventLocal": "2026-02-04",
- "strTime": "22:00:00",
- "strTimeLocal": "19:00:00",
- "strGroup": "",
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5tkcsf1769682384.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398208",
- "idAPIfootball": "1492127",
- "strTimestamp": "2026-02-04T23:00:00",
- "strEvent": "Remo vs Mirassol",
- "strEventAlternate": "Mirassol @ Remo",
- "strFilename": "Brazilian Serie A 2026-02-04 Remo vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Remo",
- "strAwayTeam": "Mirassol",
- "intHomeScore": "2",
- "intRound": "2",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-04",
- "dateEventLocal": "2026-02-04",
- "strTime": "23:00:00",
- "strTimeLocal": "20:00:00",
- "strGroup": "",
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/rd9nf11769682395.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398209",
- "idAPIfootball": "1492128",
- "strTimestamp": "2026-02-04T23:00:00",
- "strEvent": "Santos vs São Paulo",
- "strEventAlternate": "São Paulo @ Santos",
- "strFilename": "Brazilian Serie A 2026-02-04 Santos vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Santos",
- "strAwayTeam": "São Paulo",
- "intHomeScore": "1",
- "intRound": "2",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-04",
- "dateEventLocal": "2026-02-04",
- "strTime": "23:00:00",
- "strTimeLocal": "18:00:00",
- "strGroup": "",
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/i77vo51769682398.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398202",
- "idAPIfootball": "1492121",
- "strTimestamp": "2026-02-05T22:00:00",
- "strEvent": "Bahia vs Fluminense",
- "strEventAlternate": "Fluminense @ Bahia",
- "strFilename": "Brazilian Serie A 2026-02-05 Bahia vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Bahia",
- "strAwayTeam": "Fluminense",
- "intHomeScore": "1",
- "intRound": "2",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-05",
- "dateEventLocal": "2026-02-05",
- "strTime": "22:00:00",
- "strTimeLocal": "19:00:00",
- "strGroup": "",
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/43ohvg1769682355.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398206",
- "idAPIfootball": "1492125",
- "strTimestamp": "2026-02-05T00:30:00",
- "strEvent": "Grêmio vs Botafogo",
- "strEventAlternate": "Botafogo @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-02-05 Grêmio vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "Botafogo",
- "intHomeScore": "5",
- "intRound": "2",
- "intAwayScore": "3",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-05",
- "dateEventLocal": "2026-02-04",
- "strTime": "00:30:00",
- "strTimeLocal": "21:30:00",
- "strGroup": "",
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/11e84d1769682388.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398207",
- "idAPIfootball": "1492126",
- "strTimestamp": "2026-02-05T00:30:00",
- "strEvent": "Palmeiras vs Vitória",
- "strEventAlternate": "Vitória @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-02-05 Palmeiras vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "Vitória",
- "intHomeScore": "5",
- "intRound": "2",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-05",
- "dateEventLocal": "2026-02-04",
- "strTime": "00:30:00",
- "strTimeLocal": "21:30:00",
- "strGroup": "",
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/w1i4gj1769682391.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398210",
- "idAPIfootball": "1492129",
- "strTimestamp": "2026-02-05T23:00:00",
- "strEvent": "Vasco da Gama vs Chapecoense",
- "strEventAlternate": "Chapecoense @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-02-05 Vasco da Gama vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": "1",
- "intRound": "2",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-05",
- "dateEventLocal": "2026-02-05",
- "strTime": "23:00:00",
- "strTimeLocal": "20:00:00",
- "strGroup": "",
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/y8aeqh1769682402.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398204",
- "idAPIfootball": "1492123",
- "strTimestamp": "2026-02-06T00:30:00",
- "strEvent": "Cruzeiro vs Coritiba",
- "strEventAlternate": "Coritiba @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-02-06 Cruzeiro vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "Coritiba",
- "intHomeScore": "1",
- "intRound": "2",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-06",
- "dateEventLocal": "2026-02-05",
- "strTime": "00:30:00",
- "strTimeLocal": "21:30:00",
- "strGroup": "",
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/knw1kk1769682380.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398201",
- "idAPIfootball": "1492120",
- "strTimestamp": "2026-02-19T22:30:00",
- "strEvent": "Athletico Paranaense vs Corinthians",
- "strEventAlternate": "Corinthians @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-02-19 Athletico Paranaense vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "Corinthians",
- "intHomeScore": "0",
- "intRound": "2",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-19",
- "dateEventLocal": "2026-02-19",
- "strTime": "22:30:00",
- "strTimeLocal": "19:30:00",
- "strGroup": "",
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/k42z6d1769682351.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398212",
- "idAPIfootball": "1492131",
- "strTimestamp": "2026-02-11T23:00:00",
- "strEvent": "Atlético Mineiro vs Remo",
- "strEventAlternate": "Remo @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-02-11 Atlético Mineiro vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "Remo",
- "intHomeScore": "3",
- "intRound": "3",
- "intAwayScore": "3",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-11",
- "dateEventLocal": "2026-02-11",
- "strTime": "23:00:00",
- "strTimeLocal": "20:00:00",
- "strGroup": "",
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/v80buh1769682409.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398213",
- "idAPIfootball": "1492132",
- "strTimestamp": "2026-02-11T22:00:00",
- "strEvent": "Chapecoense vs Coritiba",
- "strEventAlternate": "Coritiba @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-02-11 Chapecoense vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "Coritiba",
- "intHomeScore": "3",
- "intRound": "3",
- "intAwayScore": "3",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-11",
- "dateEventLocal": "2026-02-11",
- "strTime": "22:00:00",
- "strTimeLocal": "19:00:00",
- "strGroup": "",
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ivme541769682413.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398217",
- "idAPIfootball": "1492136",
- "strTimestamp": "2026-02-11T22:00:00",
- "strEvent": "Mirassol vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-02-11 Mirassol vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": "2",
- "intRound": "3",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-11",
- "dateEventLocal": "2026-02-11",
- "strTime": "22:00:00",
- "strTimeLocal": "19:00:00",
- "strGroup": "",
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/nc186q1769682428.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398220",
- "idAPIfootball": "1492139",
- "strTimestamp": "2026-02-11T00:30:00",
- "strEvent": "Vitória vs Flamengo",
- "strEventAlternate": "Flamengo @ Vitória",
- "strFilename": "Brazilian Serie A 2026-02-11 Vitória vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Vitória",
- "strAwayTeam": "Flamengo",
- "intHomeScore": "1",
- "intRound": "3",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-11",
- "dateEventLocal": "2026-02-10",
- "strTime": "00:30:00",
- "strTimeLocal": "21:30:00",
- "strGroup": "",
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/cr8wz81769682439.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398211",
- "idAPIfootball": "1492130",
- "strTimestamp": "2026-02-12T22:00:00",
- "strEvent": "Athletico Paranaense vs Santos",
- "strEventAlternate": "Santos @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-02-12 Athletico Paranaense vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "Santos",
- "intHomeScore": "2",
- "intRound": "3",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-12",
- "dateEventLocal": "2026-02-12",
- "strTime": "22:00:00",
- "strTimeLocal": "19:00:00",
- "strGroup": "",
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fz04411769682406.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398214",
- "idAPIfootball": "1492133",
- "strTimestamp": "2026-02-12T23:00:00",
- "strEvent": "Corinthians vs Bragantino",
- "strEventAlternate": "Bragantino @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-02-12 Corinthians vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "Bragantino",
- "intHomeScore": "2",
- "intRound": "3",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-12",
- "dateEventLocal": "2026-02-12",
- "strTime": "23:00:00",
- "strTimeLocal": "20:00:00",
- "strGroup": "",
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/enrzhj1769682417.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398215",
- "idAPIfootball": "1492134",
- "strTimestamp": "2026-02-12T22:30:00",
- "strEvent": "Fluminense vs Botafogo",
- "strEventAlternate": "Botafogo @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-02-12 Fluminense vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "Botafogo",
- "intHomeScore": "1",
- "intRound": "3",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-12",
- "dateEventLocal": "2026-02-12",
- "strTime": "22:30:00",
- "strTimeLocal": "19:30:00",
- "strGroup": "",
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bizyzu1769682420.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398218",
- "idAPIfootball": "1492137",
- "strTimestamp": "2026-02-12T00:30:00",
- "strEvent": "São Paulo vs Grêmio",
- "strEventAlternate": "Grêmio @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-02-12 São Paulo vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Grêmio",
- "intHomeScore": "2",
- "intRound": "3",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-12",
- "dateEventLocal": "2026-02-11",
- "strTime": "00:30:00",
- "strTimeLocal": "21:30:00",
- "strGroup": "",
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/09pima1769682431.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398219",
- "idAPIfootball": "1492138",
- "strTimestamp": "2026-02-12T00:30:00",
- "strEvent": "Vasco da Gama vs Bahia",
- "strEventAlternate": "Bahia @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-02-12 Vasco da Gama vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "Bahia",
- "intHomeScore": "0",
- "intRound": "3",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-12",
- "dateEventLocal": "2026-02-11",
- "strTime": "00:30:00",
- "strTimeLocal": "21:30:00",
- "strGroup": "",
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/y83cn91769682435.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398216",
- "idAPIfootball": "1492135",
- "strTimestamp": "2026-02-13T00:30:00",
- "strEvent": "Internacional vs Palmeiras",
- "strEventAlternate": "Palmeiras @ Internacional",
- "strFilename": "Brazilian Serie A 2026-02-13 Internacional vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Internacional",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": "1",
- "intRound": "3",
- "intAwayScore": "3",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-13",
- "dateEventLocal": "2026-02-12",
- "strTime": "00:30:00",
- "strTimeLocal": "21:30:00",
- "strGroup": "",
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ur8nd11769682424.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398221",
- "idAPIfootball": "1492140",
- "strTimestamp": "2026-02-25T21:00:00",
- "strEvent": "Bahia vs Chapecoense",
- "strEventAlternate": "Chapecoense @ Bahia",
- "strFilename": "Brazilian Serie A 2026-02-25 Bahia vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bahia",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": null,
- "intRound": "4",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-25",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/keomei1769682460.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "PST",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398222",
- "idAPIfootball": "1492141",
- "strTimestamp": "2026-02-25T21:00:00",
- "strEvent": "Botafogo vs Vitória",
- "strEventAlternate": "Vitória @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-02-25 Botafogo vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "Vitória",
- "intHomeScore": null,
- "intRound": "4",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-25",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/76t52f1769682464.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "PST",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398223",
- "idAPIfootball": "1492142",
- "strTimestamp": "2026-02-25T22:00:00",
- "strEvent": "Bragantino vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-02-25 Bragantino vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": "1",
- "intRound": "4",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-25",
- "dateEventLocal": null,
- "strTime": "22:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/sv7uy41769682467.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398224",
- "idAPIfootball": "1492143",
- "strTimestamp": "2026-02-25T22:30:00",
- "strEvent": "Coritiba vs São Paulo",
- "strEventAlternate": "São Paulo @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-02-25 Coritiba vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "São Paulo",
- "intHomeScore": "0",
- "intRound": "4",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-25",
- "dateEventLocal": null,
- "strTime": "22:30:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3a6w6b1769682471.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398225",
- "idAPIfootball": "1492144",
- "strTimestamp": "2026-02-25T23:00:00",
- "strEvent": "Cruzeiro vs Corinthians",
- "strEventAlternate": "Corinthians @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-02-25 Cruzeiro vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "Corinthians",
- "intHomeScore": "1",
- "intRound": "4",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-25",
- "dateEventLocal": null,
- "strTime": "23:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/otzxpq1769682475.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398226",
- "idAPIfootball": "1492145",
- "strTimestamp": "2026-02-25T21:00:00",
- "strEvent": "Flamengo vs Mirassol",
- "strEventAlternate": "Mirassol @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-02-25 Flamengo vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "Mirassol",
- "intHomeScore": null,
- "intRound": "4",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-25",
- "dateEventLocal": "2026-02-27",
- "strTime": "21:00:00",
- "strTimeLocal": "",
- "strGroup": "",
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/atwcu71769682478.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "PST",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398229",
- "idAPIfootball": "1492148",
- "strTimestamp": "2026-02-25T22:00:00",
- "strEvent": "Remo vs Internacional",
- "strEventAlternate": "Internacional @ Remo",
- "strFilename": "Brazilian Serie A 2026-02-25 Remo vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Remo",
- "strAwayTeam": "Internacional",
- "intHomeScore": "1",
- "intRound": "4",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-25",
- "dateEventLocal": null,
- "strTime": "22:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qpeidc1769682491.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398227",
- "idAPIfootball": "1492146",
- "strTimestamp": "2026-02-26T00:30:00",
- "strEvent": "Grêmio vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-02-26 Grêmio vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": "2",
- "intRound": "4",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-26",
- "dateEventLocal": "2026-02-25",
- "strTime": "00:30:00",
- "strTimeLocal": "21:30:00",
- "strGroup": "",
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1ei1bs1769682482.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398228",
- "idAPIfootball": "1492147",
- "strTimestamp": "2026-02-26T00:30:00",
- "strEvent": "Palmeiras vs Fluminense",
- "strEventAlternate": "Fluminense @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-02-26 Palmeiras vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "Fluminense",
- "intHomeScore": "2",
- "intRound": "4",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-26",
- "dateEventLocal": "2026-02-25",
- "strTime": "00:30:00",
- "strTimeLocal": "21:30:00",
- "strGroup": "",
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vxz8rw1769682487.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398230",
- "idAPIfootball": "1492149",
- "strTimestamp": "2026-02-26T22:00:00",
- "strEvent": "Santos vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ Santos",
- "strFilename": "Brazilian Serie A 2026-02-26 Santos vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Santos",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": "2",
- "intRound": "4",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-02-26",
- "dateEventLocal": "2026-02-26",
- "strTime": "22:00:00",
- "strTimeLocal": "19:00:00",
- "strGroup": "",
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9won1r1769682494.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398232",
- "idAPIfootball": "1492151",
- "strTimestamp": "2026-03-11T22:00:00",
- "strEvent": "Atlético Mineiro vs Internacional",
- "strEventAlternate": "Internacional @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-03-11 Atlético Mineiro vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "Internacional",
- "intHomeScore": "1",
- "intRound": "5",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-11",
- "dateEventLocal": "2026-03-11",
- "strTime": "22:00:00",
- "strTimeLocal": "19:00:00",
- "strGroup": "",
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5mheeu1769682502.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398233",
- "idAPIfootball": "1492152",
- "strTimestamp": "2026-03-11T23:00:00",
- "strEvent": "Bahia vs Vitória",
- "strEventAlternate": "Vitória @ Bahia",
- "strFilename": "Brazilian Serie A 2026-03-11 Bahia vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Bahia",
- "strAwayTeam": "Vitória",
- "intHomeScore": "1",
- "intRound": "5",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-11",
- "dateEventLocal": "2026-03-11",
- "strTime": "23:00:00",
- "strTimeLocal": "20:00:00",
- "strGroup": "",
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/wcbc5y1769682505.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398237",
- "idAPIfootball": "1492156",
- "strTimestamp": "2026-03-11T00:30:00",
- "strEvent": "Mirassol vs Santos",
- "strEventAlternate": "Santos @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-03-11 Mirassol vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "Santos",
- "intHomeScore": "2",
- "intRound": "5",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-11",
- "dateEventLocal": "2026-03-10",
- "strTime": "00:30:00",
- "strTimeLocal": "21:30:00",
- "strGroup": "",
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2tnlau1769682537.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398234",
- "idAPIfootball": "1492153",
- "strTimestamp": "2026-03-12T00:30:00",
- "strEvent": "Corinthians vs Coritiba",
- "strEventAlternate": "Coritiba @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-03-12 Corinthians vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "Coritiba",
- "intHomeScore": "0",
- "intRound": "5",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-12",
- "dateEventLocal": "2026-03-11",
- "strTime": "00:30:00",
- "strTimeLocal": "21:30:00",
- "strGroup": "",
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yn6s681769682509.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398235",
- "idAPIfootball": "1492154",
- "strTimestamp": "2026-03-12T00:30:00",
- "strEvent": "Flamengo vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-03-12 Flamengo vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": "2",
- "intRound": "5",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-12",
- "dateEventLocal": "2026-03-11",
- "strTime": "00:30:00",
- "strTimeLocal": "21:30:00",
- "strGroup": "",
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/rnu9ao1769682512.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398238",
- "idAPIfootball": "1492157",
- "strTimestamp": "2026-03-12T22:00:00",
- "strEvent": "Remo vs Fluminense",
- "strEventAlternate": "Fluminense @ Remo",
- "strFilename": "Brazilian Serie A 2026-03-12 Remo vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Remo",
- "strAwayTeam": "Fluminense",
- "intHomeScore": "0",
- "intRound": "5",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-12",
- "dateEventLocal": "2026-03-12",
- "strTime": "22:00:00",
- "strTimeLocal": "19:00:00",
- "strGroup": "",
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/x8ppns1769682541.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398239",
- "idAPIfootball": "1492158",
- "strTimestamp": "2026-03-12T23:00:00",
- "strEvent": "São Paulo vs Chapecoense",
- "strEventAlternate": "Chapecoense @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-03-12 São Paulo vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": "2",
- "intRound": "5",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-12",
- "dateEventLocal": "2026-03-12",
- "strTime": "23:00:00",
- "strTimeLocal": "20:00:00",
- "strGroup": "",
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/md8wpr1769682545.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398240",
- "idAPIfootball": "1492159",
- "strTimestamp": "2026-03-12T22:30:00",
- "strEvent": "Vasco da Gama vs Palmeiras",
- "strEventAlternate": "Palmeiras @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-03-12 Vasco da Gama vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": "2",
- "intRound": "5",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-12",
- "dateEventLocal": "2026-03-12",
- "strTime": "22:30:00",
- "strTimeLocal": "19:30:00",
- "strGroup": "",
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/uh0piy1769682548.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398236",
- "idAPIfootball": "1492155",
- "strTimestamp": "2026-03-13T00:30:00",
- "strEvent": "Grêmio vs Bragantino",
- "strEventAlternate": "Bragantino @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-03-13 Grêmio vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "Bragantino",
- "intHomeScore": "1",
- "intRound": "5",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-13",
- "dateEventLocal": "2026-03-13",
- "strTime": "00:30:00",
- "strTimeLocal": "15:15:00",
- "strGroup": "",
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qhyduy1769682516.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398231",
- "idAPIfootball": "1492150",
- "strTimestamp": "2026-03-29T22:30:00",
- "strEvent": "Athletico Paranaense vs Botafogo",
- "strEventAlternate": "Botafogo @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-03-29 Athletico Paranaense vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "Botafogo",
- "intHomeScore": "4",
- "intRound": "5",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-29",
- "dateEventLocal": "2026-03-29",
- "strTime": "22:30:00",
- "strTimeLocal": "19:30:00",
- "strGroup": "",
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8exh0j1769682498.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398241",
- "idAPIfootball": "1492160",
- "strTimestamp": "2026-03-14T23:30:00",
- "strEvent": "Botafogo vs Flamengo",
- "strEventAlternate": "Flamengo @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-03-14 Botafogo vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "Flamengo",
- "intHomeScore": "0",
- "intRound": "6",
- "intAwayScore": "3",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-14",
- "dateEventLocal": "2026-03-14",
- "strTime": "23:30:00",
- "strTimeLocal": "20:30:00",
- "strGroup": "",
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hgy7ii1769682552.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398250",
- "idAPIfootball": "1492169",
- "strTimestamp": "2026-03-14T21:30:00",
- "strEvent": "Vitória vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ Vitória",
- "strFilename": "Brazilian Serie A 2026-03-14 Vitória vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Vitória",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": "2",
- "intRound": "6",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-14",
- "dateEventLocal": "2026-03-14",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/b5szr51769682585.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398242",
- "idAPIfootball": "1492161",
- "strTimestamp": "2026-03-15T23:30:00",
- "strEvent": "Bragantino vs São Paulo",
- "strEventAlternate": "São Paulo @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-03-15 Bragantino vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "São Paulo",
- "intHomeScore": "1",
- "intRound": "6",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-15",
- "dateEventLocal": "2026-03-15",
- "strTime": "23:30:00",
- "strTimeLocal": "20:30:00",
- "strGroup": "",
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/voaphv1769682556.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398244",
- "idAPIfootball": "1492163",
- "strTimestamp": "2026-03-15T21:30:00",
- "strEvent": "Coritiba vs Remo",
- "strEventAlternate": "Remo @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-03-15 Coritiba vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "Remo",
- "intHomeScore": "1",
- "intRound": "6",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-15",
- "dateEventLocal": "2026-03-15",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/s5pnwb1769682563.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398245",
- "idAPIfootball": "1492164",
- "strTimestamp": "2026-03-15T23:30:00",
- "strEvent": "Cruzeiro vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-03-15 Cruzeiro vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": "3",
- "intRound": "6",
- "intAwayScore": "3",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-15",
- "dateEventLocal": "2026-03-15",
- "strTime": "23:30:00",
- "strTimeLocal": "20:30:00",
- "strGroup": "",
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1rmb3y1769682567.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398246",
- "idAPIfootball": "1492165",
- "strTimestamp": "2026-03-15T19:00:00",
- "strEvent": "Fluminense vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-03-15 Fluminense vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": "3",
- "intRound": "6",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-15",
- "dateEventLocal": "2026-03-15",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/d9jfnz1769682570.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398247",
- "idAPIfootball": "1492166",
- "strTimestamp": "2026-03-15T19:00:00",
- "strEvent": "Internacional vs Bahia",
- "strEventAlternate": "Bahia @ Internacional",
- "strFilename": "Brazilian Serie A 2026-03-15 Internacional vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Internacional",
- "strAwayTeam": "Bahia",
- "intHomeScore": "0",
- "intRound": "6",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-15",
- "dateEventLocal": "2026-03-15",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/49yynn1769682574.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398248",
- "idAPIfootball": "1492167",
- "strTimestamp": "2026-03-15T21:30:00",
- "strEvent": "Palmeiras vs Mirassol",
- "strEventAlternate": "Mirassol @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-03-15 Palmeiras vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "Mirassol",
- "intHomeScore": "1",
- "intRound": "6",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-15",
- "dateEventLocal": "2026-03-15",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/a58zoq1769682577.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398249",
- "idAPIfootball": "1492168",
- "strTimestamp": "2026-03-15T19:00:00",
- "strEvent": "Santos vs Corinthians",
- "strEventAlternate": "Corinthians @ Santos",
- "strFilename": "Brazilian Serie A 2026-03-15 Santos vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Santos",
- "strAwayTeam": "Corinthians",
- "intHomeScore": "1",
- "intRound": "6",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-15",
- "dateEventLocal": "2026-03-15",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6e01tr1769682581.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398243",
- "idAPIfootball": "1492162",
- "strTimestamp": "2026-03-16T23:00:00",
- "strEvent": "Chapecoense vs Grêmio",
- "strEventAlternate": "Grêmio @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-03-16 Chapecoense vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "Grêmio",
- "intHomeScore": "1",
- "intRound": "6",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-16",
- "dateEventLocal": "2026-03-16",
- "strTime": "23:00:00",
- "strTimeLocal": "20:00:00",
- "strGroup": "",
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/i3up3o1769682559.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398251",
- "idAPIfootball": "1492170",
- "strTimestamp": "2026-03-18T22:30:00",
- "strEvent": "Athletico Paranaense vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-03-18 Athletico Paranaense vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": "2",
- "intRound": "7",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-18",
- "dateEventLocal": "2026-03-18",
- "strTime": "22:30:00",
- "strTimeLocal": "19:30:00",
- "strGroup": "",
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2vs5201769682588.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398252",
- "idAPIfootball": "1492171",
- "strTimestamp": "2026-03-18T23:00:00",
- "strEvent": "Atlético Mineiro vs São Paulo",
- "strEventAlternate": "São Paulo @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-03-18 Atlético Mineiro vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "São Paulo",
- "intHomeScore": "1",
- "intRound": "7",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-18",
- "dateEventLocal": "2026-03-18",
- "strTime": "23:00:00",
- "strTimeLocal": "20:00:00",
- "strGroup": "",
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/dco58e1769682592.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398253",
- "idAPIfootball": "1492172",
- "strTimestamp": "2026-03-18T22:00:00",
- "strEvent": "Bahia vs Bragantino",
- "strEventAlternate": "Bragantino @ Bahia",
- "strFilename": "Brazilian Serie A 2026-03-18 Bahia vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Bahia",
- "strAwayTeam": "Bragantino",
- "intHomeScore": "2",
- "intRound": "7",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-18",
- "dateEventLocal": "2026-03-18",
- "strTime": "22:00:00",
- "strTimeLocal": "19:00:00",
- "strGroup": "",
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ec7ktu1769682596.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398257",
- "idAPIfootball": "1492176",
- "strTimestamp": "2026-03-18T23:00:00",
- "strEvent": "Mirassol vs Coritiba",
- "strEventAlternate": "Coritiba @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-03-18 Mirassol vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "Coritiba",
- "intHomeScore": "0",
- "intRound": "7",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-18",
- "dateEventLocal": "2026-03-18",
- "strTime": "23:00:00",
- "strTimeLocal": "20:00:00",
- "strGroup": "",
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/wtatic1769682629.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398258",
- "idAPIfootball": "1492177",
- "strTimestamp": "2026-03-18T22:00:00",
- "strEvent": "Palmeiras vs Botafogo",
- "strEventAlternate": "Botafogo @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-03-18 Palmeiras vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "Botafogo",
- "intHomeScore": "2",
- "intRound": "7",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-18",
- "dateEventLocal": "2026-03-18",
- "strTime": "22:00:00",
- "strTimeLocal": "19:00:00",
- "strGroup": "",
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/m545w21769682632.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398255",
- "idAPIfootball": "1492174",
- "strTimestamp": "2026-03-19T23:00:00",
- "strEvent": "Flamengo vs Remo",
- "strEventAlternate": "Remo @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-03-19 Flamengo vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "Remo",
- "intHomeScore": "3",
- "intRound": "7",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-19",
- "dateEventLocal": "2026-03-19",
- "strTime": "23:00:00",
- "strTimeLocal": "20:00:00",
- "strGroup": "",
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/x7yhej1769682621.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398256",
- "idAPIfootball": "1492175",
- "strTimestamp": "2026-03-19T22:00:00",
- "strEvent": "Grêmio vs Vitória",
- "strEventAlternate": "Vitória @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-03-19 Grêmio vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "Vitória",
- "intHomeScore": "2",
- "intRound": "7",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-19",
- "dateEventLocal": "2026-03-19",
- "strTime": "22:00:00",
- "strTimeLocal": "19:00:00",
- "strGroup": "",
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/m0zs4m1769682625.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398259",
- "idAPIfootball": "1492178",
- "strTimestamp": "2026-03-19T00:30:00",
- "strEvent": "Santos vs Internacional",
- "strEventAlternate": "Internacional @ Santos",
- "strFilename": "Brazilian Serie A 2026-03-19 Santos vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Santos",
- "strAwayTeam": "Internacional",
- "intHomeScore": "1",
- "intRound": "7",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-19",
- "dateEventLocal": "2026-03-18",
- "strTime": "00:30:00",
- "strTimeLocal": "21:30:00",
- "strGroup": "",
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/i3cms91769682637.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398260",
- "idAPIfootball": "1492179",
- "strTimestamp": "2026-03-19T00:30:00",
- "strEvent": "Vasco da Gama vs Fluminense",
- "strEventAlternate": "Fluminense @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-03-19 Vasco da Gama vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "Fluminense",
- "intHomeScore": "3",
- "intRound": "7",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-19",
- "dateEventLocal": "2026-03-18",
- "strTime": "00:30:00",
- "strTimeLocal": "21:30:00",
- "strGroup": "",
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2pdu711769682640.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398254",
- "idAPIfootball": "1492173",
- "strTimestamp": "2026-03-20T00:30:00",
- "strEvent": "Chapecoense vs Corinthians",
- "strEventAlternate": "Corinthians @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-03-20 Chapecoense vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "Corinthians",
- "intHomeScore": "0",
- "intRound": "7",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-20",
- "dateEventLocal": "2026-03-20",
- "strTime": "00:30:00",
- "strTimeLocal": "19:30:00",
- "strGroup": "",
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fkgo971769682599.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398262",
- "idAPIfootball": "1492181",
- "strTimestamp": "2026-03-21T19:00:00",
- "strEvent": "Bragantino vs Botafogo",
- "strEventAlternate": "Botafogo @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-03-21 Bragantino vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "Botafogo",
- "intHomeScore": "1",
- "intRound": "8",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-21",
- "dateEventLocal": "2026-03-21",
- "strTime": "19:00:00",
- "strTimeLocal": "18:00:00",
- "strGroup": "",
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/q6q8gc1769682648.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398265",
- "idAPIfootball": "1492184",
- "strTimestamp": "2026-03-21T21:30:00",
- "strEvent": "Fluminense vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-03-21 Fluminense vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": "1",
- "intRound": "8",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-21",
- "dateEventLocal": "2026-03-21",
- "strTime": "21:30:00",
- "strTimeLocal": "18:00:00",
- "strGroup": "",
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5yr6us1769682659.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398261",
- "idAPIfootball": "1492180",
- "strTimestamp": "2026-03-22T19:00:00",
- "strEvent": "Athletico Paranaense vs Coritiba",
- "strEventAlternate": "Coritiba @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-03-22 Athletico Paranaense vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "Coritiba",
- "intHomeScore": "2",
- "intRound": "8",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-22",
- "dateEventLocal": "2026-03-22",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/x9gcor1769682644.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398263",
- "idAPIfootball": "1492182",
- "strTimestamp": "2026-03-22T23:30:00",
- "strEvent": "Corinthians vs Flamengo",
- "strEventAlternate": "Flamengo @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-03-22 Corinthians vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "Flamengo",
- "intHomeScore": "1",
- "intRound": "8",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-22",
- "dateEventLocal": "2026-03-22",
- "strTime": "23:30:00",
- "strTimeLocal": "20:30:00",
- "strGroup": "",
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/wka8931769682652.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398264",
- "idAPIfootball": "1492183",
- "strTimestamp": "2026-03-22T19:00:00",
- "strEvent": "Cruzeiro vs Santos",
- "strEventAlternate": "Santos @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-03-22 Cruzeiro vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "Santos",
- "intHomeScore": "0",
- "intRound": "8",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-22",
- "dateEventLocal": "2026-03-22",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fnr0cy1769682656.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398266",
- "idAPIfootball": "1492185",
- "strTimestamp": "2026-03-22T21:30:00",
- "strEvent": "Internacional vs Chapecoense",
- "strEventAlternate": "Chapecoense @ Internacional",
- "strFilename": "Brazilian Serie A 2026-03-22 Internacional vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Internacional",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": "2",
- "intRound": "8",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-22",
- "dateEventLocal": "2026-03-22",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5lzfkr1769682663.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398267",
- "idAPIfootball": "1492186",
- "strTimestamp": "2026-03-22T19:00:00",
- "strEvent": "Remo vs Bahia",
- "strEventAlternate": "Bahia @ Remo",
- "strFilename": "Brazilian Serie A 2026-03-22 Remo vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Remo",
- "strAwayTeam": "Bahia",
- "intHomeScore": "4",
- "intRound": "8",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-22",
- "dateEventLocal": "2026-03-22",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/cegdeg1769682667.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398268",
- "idAPIfootball": "1492187",
- "strTimestamp": "2026-03-22T00:00:00",
- "strEvent": "São Paulo vs Palmeiras",
- "strEventAlternate": "Palmeiras @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-03-22 São Paulo vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": "0",
- "intRound": "8",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-22",
- "dateEventLocal": "2026-03-21",
- "strTime": "00:00:00",
- "strTimeLocal": "21:00:00",
- "strGroup": "",
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/wmq8g71769682670.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398269",
- "idAPIfootball": "1492188",
- "strTimestamp": "2026-03-22T19:00:00",
- "strEvent": "Vasco da Gama vs Grêmio",
- "strEventAlternate": "Grêmio @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-03-22 Vasco da Gama vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "Grêmio",
- "intHomeScore": "2",
- "intRound": "8",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-22",
- "dateEventLocal": "2026-03-22",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/iqdrb21769682674.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398270",
- "idAPIfootball": "1492189",
- "strTimestamp": "2026-03-22T21:30:00",
- "strEvent": "Vitória vs Mirassol",
- "strEventAlternate": "Mirassol @ Vitória",
- "strFilename": "Brazilian Serie A 2026-03-22 Vitória vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Vitória",
- "strAwayTeam": "Mirassol",
- "intHomeScore": "1",
- "intRound": "8",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-03-22",
- "dateEventLocal": "2026-03-22",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qav7wm1769682678.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398271",
- "idAPIfootball": "1492190",
- "strTimestamp": "2026-04-01T23:00:00",
- "strEvent": "Bahia vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ Bahia",
- "strFilename": "Brazilian Serie A 2026-04-01 Bahia vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Bahia",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": "3",
- "intRound": "9",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-01",
- "dateEventLocal": "2026-04-01",
- "strTime": "23:00:00",
- "strTimeLocal": "15:00:00",
- "strGroup": "",
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/n9blgb1769682681.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398272",
- "idAPIfootball": "1492191",
- "strTimestamp": "2026-04-01T22:30:00",
- "strEvent": "Botafogo vs Mirassol",
- "strEventAlternate": "Mirassol @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-04-01 Botafogo vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "Mirassol",
- "intHomeScore": "3",
- "intRound": "9",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-01",
- "dateEventLocal": "2026-04-01",
- "strTime": "22:30:00",
- "strTimeLocal": "15:00:00",
- "strGroup": "",
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/o6w2u31769682685.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398275",
- "idAPIfootball": "1492194",
- "strTimestamp": "2026-04-01T23:30:00",
- "strEvent": "Coritiba vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-04-01 Coritiba vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": "1",
- "intRound": "9",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-01",
- "dateEventLocal": "2026-04-01",
- "strTime": "23:30:00",
- "strTimeLocal": "15:00:00",
- "strGroup": "",
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/32l1491769682696.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398276",
- "idAPIfootball": "1492195",
- "strTimestamp": "2026-04-01T23:00:00",
- "strEvent": "Cruzeiro vs Vitória",
- "strEventAlternate": "Vitória @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-04-01 Cruzeiro vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "Vitória",
- "intHomeScore": "3",
- "intRound": "9",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-01",
- "dateEventLocal": "2026-04-01",
- "strTime": "23:00:00",
- "strTimeLocal": "15:00:00",
- "strGroup": "",
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0c71nh1769682699.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398278",
- "idAPIfootball": "1492197",
- "strTimestamp": "2026-04-01T22:30:00",
- "strEvent": "Internacional vs São Paulo",
- "strEventAlternate": "São Paulo @ Internacional",
- "strFilename": "Brazilian Serie A 2026-04-01 Internacional vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Internacional",
- "strAwayTeam": "São Paulo",
- "intHomeScore": "1",
- "intRound": "9",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-01",
- "dateEventLocal": "2026-04-01",
- "strTime": "22:30:00",
- "strTimeLocal": "15:00:00",
- "strGroup": "",
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/wrbrt31769682724.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398274",
- "idAPIfootball": "1492193",
- "strTimestamp": "2026-04-02T22:00:00",
- "strEvent": "Chapecoense vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-04-02 Chapecoense vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": "0",
- "intRound": "9",
- "intAwayScore": "4",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-02",
- "dateEventLocal": "2026-04-02",
- "strTime": "22:00:00",
- "strTimeLocal": "12:00:00",
- "strGroup": "",
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/giw1ll1769682692.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398277",
- "idAPIfootball": "1492196",
- "strTimestamp": "2026-04-02T00:30:00",
- "strEvent": "Fluminense vs Corinthians",
- "strEventAlternate": "Corinthians @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-04-02 Fluminense vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "Corinthians",
- "intHomeScore": "3",
- "intRound": "9",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-02",
- "dateEventLocal": "2026-04-02",
- "strTime": "00:30:00",
- "strTimeLocal": "12:00:00",
- "strGroup": "",
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5qmcib1769682721.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398280",
- "idAPIfootball": "1492199",
- "strTimestamp": "2026-04-02T22:00:00",
- "strEvent": "Santos vs Remo",
- "strEventAlternate": "Remo @ Santos",
- "strFilename": "Brazilian Serie A 2026-04-02 Santos vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Santos",
- "strAwayTeam": "Remo",
- "intHomeScore": "2",
- "intRound": "9",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-02",
- "dateEventLocal": "2026-04-02",
- "strTime": "22:00:00",
- "strTimeLocal": "12:00:00",
- "strGroup": "",
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xw7kzl1769682732.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398273",
- "idAPIfootball": "1492192",
- "strTimestamp": "2026-04-03T00:30:00",
- "strEvent": "Bragantino vs Flamengo",
- "strEventAlternate": "Flamengo @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-04-03 Bragantino vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "Flamengo",
- "intHomeScore": "3",
- "intRound": "9",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-03",
- "dateEventLocal": "2026-04-03",
- "strTime": "00:30:00",
- "strTimeLocal": "15:00:00",
- "strGroup": "",
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3ohv6e1769682688.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398279",
- "idAPIfootball": "1492198",
- "strTimestamp": "2026-04-03T00:30:00",
- "strEvent": "Palmeiras vs Grêmio",
- "strEventAlternate": "Grêmio @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-04-03 Palmeiras vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "Grêmio",
- "intHomeScore": "2",
- "intRound": "9",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-03",
- "dateEventLocal": "2026-04-02",
- "strTime": "00:30:00",
- "strTimeLocal": "21:30:00",
- "strGroup": "",
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/94jqel1769682728.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398285",
- "idAPIfootball": "1492204",
- "strTimestamp": "2026-04-04T23:30:00",
- "strEvent": "Coritiba vs Fluminense",
- "strEventAlternate": "Fluminense @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-04-04 Coritiba vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "Fluminense",
- "intHomeScore": "1",
- "intRound": "10",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-04",
- "dateEventLocal": "2026-04-04",
- "strTime": "23:30:00",
- "strTimeLocal": "18:00:00",
- "strGroup": "",
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/lcfq0w1769682751.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398289",
- "idAPIfootball": "1492208",
- "strTimestamp": "2026-04-04T21:30:00",
- "strEvent": "São Paulo vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-04-04 São Paulo vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": "4",
- "intRound": "10",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-04",
- "dateEventLocal": "2026-04-04",
- "strTime": "21:30:00",
- "strTimeLocal": "18:00:00",
- "strGroup": "",
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/oer3be1769682783.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398281",
- "idAPIfootball": "1492200",
- "strTimestamp": "2026-04-05T20:30:00",
- "strEvent": "Atlético Mineiro vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-04-05 Atlético Mineiro vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": "2",
- "intRound": "10",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-05",
- "dateEventLocal": "2026-04-05",
- "strTime": "20:30:00",
- "strTimeLocal": "17:30:00",
- "strGroup": "",
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fktulu1769682735.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398282",
- "idAPIfootball": "1492201",
- "strTimestamp": "2026-04-05T22:30:00",
- "strEvent": "Bahia vs Palmeiras",
- "strEventAlternate": "Palmeiras @ Bahia",
- "strFilename": "Brazilian Serie A 2026-04-05 Bahia vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Bahia",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": "1",
- "intRound": "10",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-05",
- "dateEventLocal": "2026-04-05",
- "strTime": "22:30:00",
- "strTimeLocal": "19:30:00",
- "strGroup": "",
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/b91emw1769682739.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398283",
- "idAPIfootball": "1492202",
- "strTimestamp": "2026-04-05T19:00:00",
- "strEvent": "Chapecoense vs Vitória",
- "strEventAlternate": "Vitória @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-04-05 Chapecoense vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "Vitória",
- "intHomeScore": "1",
- "intRound": "10",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-05",
- "dateEventLocal": "2026-04-05",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/eoieo11769682742.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398284",
- "idAPIfootball": "1492203",
- "strTimestamp": "2026-04-05T22:30:00",
- "strEvent": "Corinthians vs Internacional",
- "strEventAlternate": "Internacional @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-04-05 Corinthians vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "Internacional",
- "intHomeScore": "0",
- "intRound": "10",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-05",
- "dateEventLocal": "2026-04-05",
- "strTime": "22:30:00",
- "strTimeLocal": "19:30:00",
- "strGroup": "",
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fd05aw1769682747.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398286",
- "idAPIfootball": "1492205",
- "strTimestamp": "2026-04-05T20:30:00",
- "strEvent": "Flamengo vs Santos",
- "strEventAlternate": "Santos @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-04-05 Flamengo vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "Santos",
- "intHomeScore": "3",
- "intRound": "10",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-05",
- "dateEventLocal": "2026-04-05",
- "strTime": "20:30:00",
- "strTimeLocal": "17:30:00",
- "strGroup": "",
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/inasna1769682772.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398287",
- "idAPIfootball": "1492206",
- "strTimestamp": "2026-04-05T23:30:00",
- "strEvent": "Grêmio vs Remo",
- "strEventAlternate": "Remo @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-04-05 Grêmio vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "Remo",
- "intHomeScore": "0",
- "intRound": "10",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-05",
- "dateEventLocal": "2026-04-05",
- "strTime": "23:30:00",
- "strTimeLocal": "20:30:00",
- "strGroup": "",
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4j6uh41769682776.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398288",
- "idAPIfootball": "1492207",
- "strTimestamp": "2026-04-05T23:00:00",
- "strEvent": "Mirassol vs Bragantino",
- "strEventAlternate": "Bragantino @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-04-05 Mirassol vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "Bragantino",
- "intHomeScore": "0",
- "intRound": "10",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-05",
- "dateEventLocal": "2026-04-05",
- "strTime": "23:00:00",
- "strTimeLocal": "20:00:00",
- "strGroup": "",
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jec1701769682779.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398290",
- "idAPIfootball": "1492209",
- "strTimestamp": "2026-04-05T00:00:00",
- "strEvent": "Vasco da Gama vs Botafogo",
- "strEventAlternate": "Botafogo @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-04-05 Vasco da Gama vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "Botafogo",
- "intHomeScore": "1",
- "intRound": "10",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-05",
- "dateEventLocal": "2026-04-04",
- "strTime": "00:00:00",
- "strTimeLocal": "21:00:00",
- "strGroup": "",
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/35vssk1769682787.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398296",
- "idAPIfootball": "1492215",
- "strTimestamp": "2026-04-11T23:30:00",
- "strEvent": "Internacional vs Grêmio",
- "strEventAlternate": "Grêmio @ Internacional",
- "strFilename": "Brazilian Serie A 2026-04-11 Internacional vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Internacional",
- "strAwayTeam": "Grêmio",
- "intHomeScore": "0",
- "intRound": "11",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-11",
- "dateEventLocal": "2026-04-11",
- "strTime": "23:30:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4jxp8c1769682809.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398297",
- "idAPIfootball": "1492216",
- "strTimestamp": "2026-04-11T21:30:00",
- "strEvent": "Mirassol vs Bahia",
- "strEventAlternate": "Bahia @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-04-11 Mirassol vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "Bahia",
- "intHomeScore": "1",
- "intRound": "11",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-11",
- "dateEventLocal": "2026-04-11",
- "strTime": "21:30:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/i6gh941769682813.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398298",
- "idAPIfootball": "1492217",
- "strTimestamp": "2026-04-11T19:30:00",
- "strEvent": "Remo vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ Remo",
- "strFilename": "Brazilian Serie A 2026-04-11 Remo vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Remo",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": "1",
- "intRound": "11",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-11",
- "dateEventLocal": "2026-04-11",
- "strTime": "19:30:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mpz6yu1769682816.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398299",
- "idAPIfootball": "1492218",
- "strTimestamp": "2026-04-11T23:00:00",
- "strEvent": "Santos vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ Santos",
- "strFilename": "Brazilian Serie A 2026-04-11 Santos vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Santos",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": "1",
- "intRound": "11",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-11",
- "dateEventLocal": "2026-04-11",
- "strTime": "23:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/977ngh1769682820.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398300",
- "idAPIfootball": "1492219",
- "strTimestamp": "2026-04-11T19:30:00",
- "strEvent": "Vitória vs São Paulo",
- "strEventAlternate": "São Paulo @ Vitória",
- "strFilename": "Brazilian Serie A 2026-04-11 Vitória vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Vitória",
- "strAwayTeam": "São Paulo",
- "intHomeScore": "2",
- "intRound": "11",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-11",
- "dateEventLocal": "2026-04-11",
- "strTime": "19:30:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7egx6a1769682842.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398291",
- "idAPIfootball": "1492210",
- "strTimestamp": "2026-04-12T14:00:00",
- "strEvent": "Athletico Paranaense vs Chapecoense",
- "strEventAlternate": "Chapecoense @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-04-12 Athletico Paranaense vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": "2",
- "intRound": "11",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-12",
- "dateEventLocal": "2026-04-12",
- "strTime": "14:00:00",
- "strTimeLocal": "11:00:00",
- "strGroup": "",
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2kcnoe1769682790.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398292",
- "idAPIfootball": "1492211",
- "strTimestamp": "2026-04-12T19:00:00",
- "strEvent": "Botafogo vs Coritiba",
- "strEventAlternate": "Coritiba @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-04-12 Botafogo vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "Coritiba",
- "intHomeScore": "2",
- "intRound": "11",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-12",
- "dateEventLocal": "2026-04-12",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/rf9ga51769682794.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398293",
- "idAPIfootball": "1492212",
- "strTimestamp": "2026-04-12T21:30:00",
- "strEvent": "Corinthians vs Palmeiras",
- "strEventAlternate": "Palmeiras @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-04-12 Corinthians vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": "0",
- "intRound": "11",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-12",
- "dateEventLocal": "2026-04-12",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/o11wmi1769682798.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398294",
- "idAPIfootball": "1492213",
- "strTimestamp": "2026-04-12T21:30:00",
- "strEvent": "Cruzeiro vs Bragantino",
- "strEventAlternate": "Bragantino @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-04-12 Cruzeiro vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "Bragantino",
- "intHomeScore": "2",
- "intRound": "11",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-12",
- "dateEventLocal": "2026-04-12",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4caw3b1769682801.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398295",
- "idAPIfootball": "1492214",
- "strTimestamp": "2026-04-12T21:00:00",
- "strEvent": "Fluminense vs Flamengo",
- "strEventAlternate": "Flamengo @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-04-12 Fluminense vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "Flamengo",
- "intHomeScore": "1",
- "intRound": "11",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-04-12",
- "dateEventLocal": "2026-04-12",
- "strTime": "21:00:00",
- "strTimeLocal": "18:00:00",
- "strGroup": "",
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/17zwic1769682805.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398302",
- "idAPIfootball": "1492221",
- "strTimestamp": "2026-04-18T21:30:00",
- "strEvent": "Chapecoense vs Botafogo",
- "strEventAlternate": "Botafogo @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-04-18 Chapecoense vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "Botafogo",
- "intHomeScore": "1",
- "intRound": "12",
- "intAwayScore": "4",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-18",
- "dateEventLocal": "2026-04-18",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8k9za31769682849.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398304",
- "idAPIfootball": "1492223",
- "strTimestamp": "2026-04-18T23:30:00",
- "strEvent": "Cruzeiro vs Grêmio",
- "strEventAlternate": "Grêmio @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-04-18 Cruzeiro vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "Grêmio",
- "intHomeScore": "2",
- "intRound": "12",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-18",
- "dateEventLocal": "2026-04-18",
- "strTime": "23:30:00",
- "strTimeLocal": "20:30:00",
- "strGroup": "",
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/nmassx1769682856.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398309",
- "idAPIfootball": "1492228",
- "strTimestamp": "2026-04-18T21:30:00",
- "strEvent": "Vasco da Gama vs São Paulo",
- "strEventAlternate": "São Paulo @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-04-18 Vasco da Gama vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "São Paulo",
- "intHomeScore": "2",
- "intRound": "12",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-18",
- "dateEventLocal": "2026-04-18",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3siysu1769682874.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398310",
- "idAPIfootball": "1492229",
- "strTimestamp": "2026-04-18T23:00:00",
- "strEvent": "Vitória vs Corinthians",
- "strEventAlternate": "Corinthians @ Vitória",
- "strFilename": "Brazilian Serie A 2026-04-18 Vitória vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Vitória",
- "strAwayTeam": "Corinthians",
- "intHomeScore": "0",
- "intRound": "12",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-18",
- "dateEventLocal": "2026-04-18",
- "strTime": "23:00:00",
- "strTimeLocal": "20:00:00",
- "strGroup": "",
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/iwl3sj1769682878.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398301",
- "idAPIfootball": "1492220",
- "strTimestamp": "2026-04-19T21:30:00",
- "strEvent": "Bragantino vs Remo",
- "strEventAlternate": "Remo @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-04-19 Bragantino vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "Remo",
- "intHomeScore": "4",
- "intRound": "12",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-19",
- "dateEventLocal": "2026-04-19",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ll4zds1769682845.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398303",
- "idAPIfootball": "1492222",
- "strTimestamp": "2026-04-19T19:00:00",
- "strEvent": "Coritiba vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-04-19 Coritiba vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": "2",
- "intRound": "12",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-19",
- "dateEventLocal": "2026-04-19",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kkx38h1769682853.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398305",
- "idAPIfootball": "1492224",
- "strTimestamp": "2026-04-19T22:30:00",
- "strEvent": "Flamengo vs Bahia",
- "strEventAlternate": "Bahia @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-04-19 Flamengo vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "Bahia",
- "intHomeScore": "2",
- "intRound": "12",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-19",
- "dateEventLocal": "2026-04-19",
- "strTime": "22:30:00",
- "strTimeLocal": "19:30:00",
- "strGroup": "",
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/dwfoms1769682860.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398306",
- "idAPIfootball": "1492225",
- "strTimestamp": "2026-04-19T14:00:00",
- "strEvent": "Internacional vs Mirassol",
- "strEventAlternate": "Mirassol @ Internacional",
- "strFilename": "Brazilian Serie A 2026-04-19 Internacional vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Internacional",
- "strAwayTeam": "Mirassol",
- "intHomeScore": "1",
- "intRound": "12",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-19",
- "dateEventLocal": "2026-04-19",
- "strTime": "14:00:00",
- "strTimeLocal": "11:00:00",
- "strGroup": "",
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hm199r1769682863.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398307",
- "idAPIfootball": "1492226",
- "strTimestamp": "2026-04-19T21:30:00",
- "strEvent": "Palmeiras vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-04-19 Palmeiras vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": "1",
- "intRound": "12",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-19",
- "dateEventLocal": "2026-04-19",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5m91hr1769682867.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398308",
- "idAPIfootball": "1492227",
- "strTimestamp": "2026-04-19T19:00:00",
- "strEvent": "Santos vs Fluminense",
- "strEventAlternate": "Fluminense @ Santos",
- "strFilename": "Brazilian Serie A 2026-04-19 Santos vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Santos",
- "strAwayTeam": "Fluminense",
- "intHomeScore": "2",
- "intRound": "12",
- "intAwayScore": "3",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-19",
- "dateEventLocal": "2026-04-19",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xjp5md1769682871.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398313",
- "idAPIfootball": "1492232",
- "strTimestamp": "2026-04-25T21:30:00",
- "strEvent": "Bahia vs Santos",
- "strEventAlternate": "Santos @ Bahia",
- "strFilename": "Brazilian Serie A 2026-04-25 Bahia vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Bahia",
- "strAwayTeam": "Santos",
- "intHomeScore": "2",
- "intRound": "13",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-25",
- "dateEventLocal": "2026-04-25",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7rk2mw1769682907.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398314",
- "idAPIfootball": "1492233",
- "strTimestamp": "2026-04-25T21:30:00",
- "strEvent": "Botafogo vs Internacional",
- "strEventAlternate": "Internacional @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-04-25 Botafogo vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "Internacional",
- "intHomeScore": "2",
- "intRound": "13",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-25",
- "dateEventLocal": "2026-04-25",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7s8kwf1769682911.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398319",
- "idAPIfootball": "1492238",
- "strTimestamp": "2026-04-25T21:30:00",
- "strEvent": "Remo vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ Remo",
- "strFilename": "Brazilian Serie A 2026-04-25 Remo vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Remo",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": "0",
- "intRound": "13",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-25",
- "dateEventLocal": "2026-04-25",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/oznpdv1769682947.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398311",
- "idAPIfootball": "1492230",
- "strTimestamp": "2026-04-26T21:30:00",
- "strEvent": "Athletico Paranaense vs Vitória",
- "strEventAlternate": "Vitória @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-04-26 Athletico Paranaense vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "Vitória",
- "intHomeScore": "3",
- "intRound": "13",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-26",
- "dateEventLocal": "2026-04-26",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qg8jni1769682900.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398312",
- "idAPIfootball": "1492231",
- "strTimestamp": "2026-04-26T23:30:00",
- "strEvent": "Atlético Mineiro vs Flamengo",
- "strEventAlternate": "Flamengo @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-04-26 Atlético Mineiro vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "Flamengo",
- "intHomeScore": "0",
- "intRound": "13",
- "intAwayScore": "4",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-26",
- "dateEventLocal": "2026-04-26",
- "strTime": "23:30:00",
- "strTimeLocal": "20:30:00",
- "strGroup": "",
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ndmvt81769682903.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398315",
- "idAPIfootball": "1492234",
- "strTimestamp": "2026-04-26T21:30:00",
- "strEvent": "Bragantino vs Palmeiras",
- "strEventAlternate": "Palmeiras @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-04-26 Bragantino vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": "0",
- "intRound": "13",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-26",
- "dateEventLocal": "2026-04-26",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/oaex7y1769682914.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398316",
- "idAPIfootball": "1492235",
- "strTimestamp": "2026-04-26T19:00:00",
- "strEvent": "Corinthians vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-04-26 Corinthians vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": "1",
- "intRound": "13",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-26",
- "dateEventLocal": "2026-04-26",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jpdqto1769682918.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398317",
- "idAPIfootball": "1492236",
- "strTimestamp": "2026-04-26T23:30:00",
- "strEvent": "Fluminense vs Chapecoense",
- "strEventAlternate": "Chapecoense @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-04-26 Fluminense vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": "2",
- "intRound": "13",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-26",
- "dateEventLocal": "2026-04-26",
- "strTime": "23:30:00",
- "strTimeLocal": "20:30:00",
- "strGroup": "",
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/cy0ydh1769682940.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398318",
- "idAPIfootball": "1492237",
- "strTimestamp": "2026-04-26T19:00:00",
- "strEvent": "Grêmio vs Coritiba",
- "strEventAlternate": "Coritiba @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-04-26 Grêmio vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "Coritiba",
- "intHomeScore": "1",
- "intRound": "13",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-26",
- "dateEventLocal": "2026-04-26",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1jh3gc1769682943.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398320",
- "idAPIfootball": "1492239",
- "strTimestamp": "2026-04-26T00:00:00",
- "strEvent": "São Paulo vs Mirassol",
- "strEventAlternate": "Mirassol @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-04-26 São Paulo vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Mirassol",
- "intHomeScore": "1",
- "intRound": "13",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-04-26",
- "dateEventLocal": "2026-04-25",
- "strTime": "00:00:00",
- "strTimeLocal": "21:00:00",
- "strGroup": "",
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pzidm91769682969.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398321",
- "idAPIfootball": "1492240",
- "strTimestamp": "2026-05-02T23:30:00",
- "strEvent": "Athletico Paranaense vs Grêmio",
- "strEventAlternate": "Grêmio @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-05-02 Athletico Paranaense vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "Grêmio",
- "intHomeScore": "0",
- "intRound": "14",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-02",
- "dateEventLocal": "2026-05-02",
- "strTime": "23:30:00",
- "strTimeLocal": "20:30:00",
- "strGroup": "",
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1h8izb1769682973.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398322",
- "idAPIfootball": "1492241",
- "strTimestamp": "2026-05-02T19:00:00",
- "strEvent": "Botafogo vs Remo",
- "strEventAlternate": "Remo @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-05-02 Botafogo vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "Remo",
- "intHomeScore": "1",
- "intRound": "14",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-02",
- "dateEventLocal": "2026-05-02",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/xlm8z21769682976.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398328",
- "idAPIfootball": "1492247",
- "strTimestamp": "2026-05-02T21:30:00",
- "strEvent": "Palmeiras vs Santos",
- "strEventAlternate": "Santos @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-05-02 Palmeiras vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "Santos",
- "intHomeScore": "1",
- "intRound": "14",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-02",
- "dateEventLocal": "2026-05-02",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/krreqq1769683016.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398330",
- "idAPIfootball": "1492249",
- "strTimestamp": "2026-05-02T21:30:00",
- "strEvent": "Vitória vs Coritiba",
- "strEventAlternate": "Coritiba @ Vitória",
- "strFilename": "Brazilian Serie A 2026-05-02 Vitória vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Vitória",
- "strAwayTeam": "Coritiba",
- "intHomeScore": "4",
- "intRound": "14",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-02",
- "dateEventLocal": "2026-05-02",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/trkfng1769683023.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398323",
- "idAPIfootball": "1492242",
- "strTimestamp": "2026-05-03T21:30:00",
- "strEvent": "Chapecoense vs Bragantino",
- "strEventAlternate": "Bragantino @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-05-03 Chapecoense vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "Bragantino",
- "intHomeScore": "1",
- "intRound": "14",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-03",
- "dateEventLocal": "2026-05-03",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/wsjwtu1769682980.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398324",
- "idAPIfootball": "1492243",
- "strTimestamp": "2026-05-03T00:00:00",
- "strEvent": "Cruzeiro vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-05-03 Cruzeiro vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": "1",
- "intRound": "14",
- "intAwayScore": "3",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-03",
- "dateEventLocal": "2026-05-02",
- "strTime": "00:00:00",
- "strTimeLocal": "21:00:00",
- "strGroup": "",
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/q5khqx1769682984.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398325",
- "idAPIfootball": "1492244",
- "strTimestamp": "2026-05-03T19:00:00",
- "strEvent": "Flamengo vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-05-03 Flamengo vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": "2",
- "intRound": "14",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-03",
- "dateEventLocal": "2026-05-03",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/wcuaf11769683005.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398326",
- "idAPIfootball": "1492245",
- "strTimestamp": "2026-05-03T21:30:00",
- "strEvent": "Internacional vs Fluminense",
- "strEventAlternate": "Fluminense @ Internacional",
- "strFilename": "Brazilian Serie A 2026-05-03 Internacional vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Internacional",
- "strAwayTeam": "Fluminense",
- "intHomeScore": "2",
- "intRound": "14",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-03",
- "dateEventLocal": "2026-05-03",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2hortx1769683009.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398327",
- "idAPIfootball": "1492246",
- "strTimestamp": "2026-05-03T23:30:00",
- "strEvent": "Mirassol vs Corinthians",
- "strEventAlternate": "Corinthians @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-05-03 Mirassol vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "Corinthians",
- "intHomeScore": "2",
- "intRound": "14",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-03",
- "dateEventLocal": "2026-05-03",
- "strTime": "23:30:00",
- "strTimeLocal": "20:30:00",
- "strGroup": "",
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/da1j4q1769683012.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398329",
- "idAPIfootball": "1492248",
- "strTimestamp": "2026-05-03T19:00:00",
- "strEvent": "São Paulo vs Bahia",
- "strEventAlternate": "Bahia @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-05-03 São Paulo vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Bahia",
- "intHomeScore": "2",
- "intRound": "14",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-03",
- "dateEventLocal": "2026-05-03",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4ea7qn1769683020.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398334",
- "idAPIfootball": "1492253",
- "strTimestamp": "2026-05-09T19:00:00",
- "strEvent": "Coritiba vs Internacional",
- "strEventAlternate": "Internacional @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-05-09 Coritiba vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "Internacional",
- "intHomeScore": "2",
- "intRound": "15",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-09",
- "dateEventLocal": "2026-05-09",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vqwha01769683056.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398335",
- "idAPIfootball": "1492254",
- "strTimestamp": "2026-05-09T21:00:00",
- "strEvent": "Fluminense vs Vitória",
- "strEventAlternate": "Vitória @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-05-09 Fluminense vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "Vitória",
- "intHomeScore": "2",
- "intRound": "15",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-09",
- "dateEventLocal": "2026-05-09",
- "strTime": "21:00:00",
- "strTimeLocal": "18:00:00",
- "strGroup": "",
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fybors1769683060.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398331",
- "idAPIfootball": "1492250",
- "strTimestamp": "2026-05-10T19:00:00",
- "strEvent": "Atlético Mineiro vs Botafogo",
- "strEventAlternate": "Botafogo @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-05-10 Atlético Mineiro vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "Botafogo",
- "intHomeScore": "1",
- "intRound": "15",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-10",
- "dateEventLocal": "2026-05-10",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6kffob1769683027.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398332",
- "idAPIfootball": "1492251",
- "strTimestamp": "2026-05-10T00:00:00",
- "strEvent": "Bahia vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ Bahia",
- "strFilename": "Brazilian Serie A 2026-05-10 Bahia vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Bahia",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": "1",
- "intRound": "15",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-10",
- "dateEventLocal": "2026-05-09",
- "strTime": "00:00:00",
- "strTimeLocal": "21:00:00",
- "strGroup": "",
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9xfhvh1769683031.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398333",
- "idAPIfootball": "1492252",
- "strTimestamp": "2026-05-10T21:30:00",
- "strEvent": "Corinthians vs São Paulo",
- "strEventAlternate": "São Paulo @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-05-10 Corinthians vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "São Paulo",
- "intHomeScore": "3",
- "intRound": "15",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-10",
- "dateEventLocal": "2026-05-10",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3godxh1769683052.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398336",
- "idAPIfootball": "1492255",
- "strTimestamp": "2026-05-10T22:30:00",
- "strEvent": "Grêmio vs Flamengo",
- "strEventAlternate": "Flamengo @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-05-10 Grêmio vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "Flamengo",
- "intHomeScore": "0",
- "intRound": "15",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-10",
- "dateEventLocal": "2026-05-10",
- "strTime": "22:30:00",
- "strTimeLocal": "19:30:00",
- "strGroup": "",
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fbyhye1769683063.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398337",
- "idAPIfootball": "1492256",
- "strTimestamp": "2026-05-10T21:30:00",
- "strEvent": "Mirassol vs Chapecoense",
- "strEventAlternate": "Chapecoense @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-05-10 Mirassol vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": "1",
- "intRound": "15",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-10",
- "dateEventLocal": "2026-05-10",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/dqz0bb1769683067.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398338",
- "idAPIfootball": "1492257",
- "strTimestamp": "2026-05-10T19:00:00",
- "strEvent": "Remo vs Palmeiras",
- "strEventAlternate": "Palmeiras @ Remo",
- "strFilename": "Brazilian Serie A 2026-05-10 Remo vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Remo",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": "1",
- "intRound": "15",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-10",
- "dateEventLocal": "2026-05-10",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yboutl1769683070.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398339",
- "idAPIfootball": "1492258",
- "strTimestamp": "2026-05-10T21:30:00",
- "strEvent": "Santos vs Bragantino",
- "strEventAlternate": "Bragantino @ Santos",
- "strFilename": "Brazilian Serie A 2026-05-10 Santos vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Santos",
- "strAwayTeam": "Bragantino",
- "intHomeScore": "2",
- "intRound": "15",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-10",
- "dateEventLocal": "2026-05-10",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/387ruc1769683074.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398340",
- "idAPIfootball": "1492259",
- "strTimestamp": "2026-05-10T23:30:00",
- "strEvent": "Vasco da Gama vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-05-10 Vasco da Gama vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": "1",
- "intRound": "15",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-10",
- "dateEventLocal": "2026-05-10",
- "strTime": "23:30:00",
- "strTimeLocal": "20:30:00",
- "strGroup": "",
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/z4ehgy1769683078.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398342",
- "idAPIfootball": "1492261",
- "strTimestamp": "2026-05-16T21:30:00",
- "strEvent": "Atlético Mineiro vs Mirassol",
- "strEventAlternate": "Mirassol @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-05-16 Atlético Mineiro vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "Mirassol",
- "intHomeScore": "3",
- "intRound": "16",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-16",
- "dateEventLocal": "2026-05-16",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fqno641769683085.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398347",
- "idAPIfootball": "1492266",
- "strTimestamp": "2026-05-16T22:00:00",
- "strEvent": "Fluminense vs São Paulo",
- "strEventAlternate": "São Paulo @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-05-16 Fluminense vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "São Paulo",
- "intHomeScore": "2",
- "intRound": "16",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-16",
- "dateEventLocal": "2026-05-16",
- "strTime": "22:00:00",
- "strTimeLocal": "19:00:00",
- "strGroup": "",
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/g8msga1769683139.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398348",
- "idAPIfootball": "1492267",
- "strTimestamp": "2026-05-16T21:30:00",
- "strEvent": "Internacional vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ Internacional",
- "strFilename": "Brazilian Serie A 2026-05-16 Internacional vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Internacional",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": "4",
- "intRound": "16",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-16",
- "dateEventLocal": "2026-05-16",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bnmh9n1769683161.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398341",
- "idAPIfootball": "1492260",
- "strTimestamp": "2026-05-17T22:30:00",
- "strEvent": "Athletico Paranaense vs Flamengo",
- "strEventAlternate": "Flamengo @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-05-17 Athletico Paranaense vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "Flamengo",
- "intHomeScore": "1",
- "intRound": "16",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-17",
- "dateEventLocal": "2026-05-17",
- "strTime": "22:30:00",
- "strTimeLocal": "19:30:00",
- "strGroup": "",
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3o4is21769683081.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398343",
- "idAPIfootball": "1492262",
- "strTimestamp": "2026-05-17T19:00:00",
- "strEvent": "Bahia vs Grêmio",
- "strEventAlternate": "Grêmio @ Bahia",
- "strFilename": "Brazilian Serie A 2026-05-17 Bahia vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Bahia",
- "strAwayTeam": "Grêmio",
- "intHomeScore": "1",
- "intRound": "16",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-17",
- "dateEventLocal": "2026-05-17",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/o6y3721769683089.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398344",
- "idAPIfootball": "1492263",
- "strTimestamp": "2026-05-17T19:00:00",
- "strEvent": "Botafogo vs Corinthians",
- "strEventAlternate": "Corinthians @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-05-17 Botafogo vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "Corinthians",
- "intHomeScore": "3",
- "intRound": "16",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-17",
- "dateEventLocal": "2026-05-17",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vyndee1769683110.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398345",
- "idAPIfootball": "1492264",
- "strTimestamp": "2026-05-17T21:30:00",
- "strEvent": "Bragantino vs Vitória",
- "strEventAlternate": "Vitória @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-05-17 Bragantino vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "Vitória",
- "intHomeScore": "2",
- "intRound": "16",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-17",
- "dateEventLocal": "2026-05-17",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kgzriw1769683132.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398346",
- "idAPIfootball": "1492265",
- "strTimestamp": "2026-05-17T21:30:00",
- "strEvent": "Chapecoense vs Remo",
- "strEventAlternate": "Remo @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-05-17 Chapecoense vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "Remo",
- "intHomeScore": "2",
- "intRound": "16",
- "intAwayScore": "3",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-17",
- "dateEventLocal": "2026-05-17",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/069uqo1769683135.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398349",
- "idAPIfootball": "1492268",
- "strTimestamp": "2026-05-17T00:00:00",
- "strEvent": "Palmeiras vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-05-17 Palmeiras vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": "1",
- "intRound": "16",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-17",
- "dateEventLocal": "2026-05-16",
- "strTime": "00:00:00",
- "strTimeLocal": "21:00:00",
- "strGroup": "",
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/sn5b1v1769683164.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398350",
- "idAPIfootball": "1492269",
- "strTimestamp": "2026-05-17T14:00:00",
- "strEvent": "Santos vs Coritiba",
- "strEventAlternate": "Coritiba @ Santos",
- "strFilename": "Brazilian Serie A 2026-05-17 Santos vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Santos",
- "strAwayTeam": "Coritiba",
- "intHomeScore": "0",
- "intRound": "16",
- "intAwayScore": "3",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-17",
- "dateEventLocal": "2026-05-17",
- "strTime": "14:00:00",
- "strTimeLocal": "11:00:00",
- "strGroup": "",
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7xcvb11769683168.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398355",
- "idAPIfootball": "1492274",
- "strTimestamp": "2026-05-23T22:00:00",
- "strEvent": "Grêmio vs Santos",
- "strEventAlternate": "Santos @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-05-23 Grêmio vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "Santos",
- "intHomeScore": "3",
- "intRound": "17",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-23",
- "dateEventLocal": "2026-05-23",
- "strTime": "22:00:00",
- "strTimeLocal": "17:00:00",
- "strGroup": "",
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3qncgh1769683241.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398356",
- "idAPIfootball": "1492275",
- "strTimestamp": "2026-05-23T22:00:00",
- "strEvent": "Mirassol vs Fluminense",
- "strEventAlternate": "Fluminense @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-05-23 Mirassol vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "Fluminense",
- "intHomeScore": "1",
- "intRound": "17",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-23",
- "dateEventLocal": "2026-05-23",
- "strTime": "22:00:00",
- "strTimeLocal": "17:00:00",
- "strGroup": "",
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/e22eqy1769683245.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398358",
- "idAPIfootball": "1492277",
- "strTimestamp": "2026-05-23T20:00:00",
- "strEvent": "São Paulo vs Botafogo",
- "strEventAlternate": "Botafogo @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-05-23 São Paulo vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Botafogo",
- "intHomeScore": "1",
- "intRound": "17",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-23",
- "dateEventLocal": "2026-05-23",
- "strTime": "20:00:00",
- "strTimeLocal": "17:00:00",
- "strGroup": "",
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4r059g1769683252.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398360",
- "idAPIfootball": "1492279",
- "strTimestamp": "2026-05-23T20:00:00",
- "strEvent": "Vitória vs Internacional",
- "strEventAlternate": "Internacional @ Vitória",
- "strFilename": "Brazilian Serie A 2026-05-23 Vitória vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Vitória",
- "strAwayTeam": "Internacional",
- "intHomeScore": "2",
- "intRound": "17",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-23",
- "dateEventLocal": "2026-05-23",
- "strTime": "20:00:00",
- "strTimeLocal": "17:00:00",
- "strGroup": "",
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jic0lr1769683260.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398351",
- "idAPIfootball": "1492270",
- "strTimestamp": "2026-05-24T21:30:00",
- "strEvent": "Corinthians vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-05-24 Corinthians vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": "1",
- "intRound": "17",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-24",
- "dateEventLocal": "2026-05-24",
- "strTime": "21:30:00",
- "strTimeLocal": "18:30:00",
- "strGroup": "",
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/dyoday1769683190.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398353",
- "idAPIfootball": "1492272",
- "strTimestamp": "2026-05-24T19:00:00",
- "strEvent": "Cruzeiro vs Chapecoense",
- "strEventAlternate": "Chapecoense @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-05-24 Cruzeiro vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": "2",
- "intRound": "17",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-24",
- "dateEventLocal": "2026-05-24",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ljv5041769683216.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398354",
- "idAPIfootball": "1492273",
- "strTimestamp": "2026-05-24T00:00:00",
- "strEvent": "Flamengo vs Palmeiras",
- "strEventAlternate": "Palmeiras @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-05-24 Flamengo vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": "0",
- "intRound": "17",
- "intAwayScore": "3",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-24",
- "dateEventLocal": "2026-05-23",
- "strTime": "00:00:00",
- "strTimeLocal": "21:00:00",
- "strGroup": "",
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3ylti91769683220.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398357",
- "idAPIfootball": "1492276",
- "strTimestamp": "2026-05-24T19:00:00",
- "strEvent": "Remo vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ Remo",
- "strFilename": "Brazilian Serie A 2026-05-24 Remo vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Remo",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": "1",
- "intRound": "17",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-24",
- "dateEventLocal": "2026-05-24",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/w7qumi1769683249.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398359",
- "idAPIfootball": "1492278",
- "strTimestamp": "2026-05-24T23:30:00",
- "strEvent": "Vasco da Gama vs Bragantino",
- "strEventAlternate": "Bragantino @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-05-24 Vasco da Gama vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "Bragantino",
- "intHomeScore": "0",
- "intRound": "17",
- "intAwayScore": "3",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-24",
- "dateEventLocal": "2026-05-24",
- "strTime": "23:30:00",
- "strTimeLocal": "20:30:00",
- "strGroup": "",
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7k7mwb1769683256.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398352",
- "idAPIfootball": "1492271",
- "strTimestamp": "2026-05-25T23:00:00",
- "strEvent": "Coritiba vs Bahia",
- "strEventAlternate": "Bahia @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-05-25 Coritiba vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "Bahia",
- "intHomeScore": "3",
- "intRound": "17",
- "intAwayScore": "2",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-25",
- "dateEventLocal": "2026-05-25",
- "strTime": "23:00:00",
- "strTimeLocal": "20:00:00",
- "strGroup": "",
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7r3iav1769683212.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398361",
- "idAPIfootball": "1492280",
- "strTimestamp": "2026-05-30T19:00:00",
- "strEvent": "Athletico Paranaense vs Mirassol",
- "strEventAlternate": "Mirassol @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-05-30 Athletico Paranaense vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "Mirassol",
- "intHomeScore": "1",
- "intRound": "18",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-30",
- "dateEventLocal": "2026-05-30",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/d5vbwv1769683281.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398362",
- "idAPIfootball": "1492281",
- "strTimestamp": "2026-05-30T20:30:00",
- "strEvent": "Bahia vs Botafogo",
- "strEventAlternate": "Botafogo @ Bahia",
- "strFilename": "Brazilian Serie A 2026-05-30 Bahia vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Bahia",
- "strAwayTeam": "Botafogo",
- "intHomeScore": "2",
- "intRound": "18",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-30",
- "dateEventLocal": "2026-05-30",
- "strTime": "20:30:00",
- "strTimeLocal": "17:30:00",
- "strGroup": "",
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/29dl3o1769683303.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398365",
- "idAPIfootball": "1492284",
- "strTimestamp": "2026-05-30T19:00:00",
- "strEvent": "Flamengo vs Coritiba",
- "strEventAlternate": "Coritiba @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-05-30 Flamengo vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "Coritiba",
- "intHomeScore": "3",
- "intRound": "18",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-30",
- "dateEventLocal": "2026-05-30",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/etn9r61769683332.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398366",
- "idAPIfootball": "1492285",
- "strTimestamp": "2026-05-30T20:30:00",
- "strEvent": "Grêmio vs Corinthians",
- "strEventAlternate": "Corinthians @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-05-30 Grêmio vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "Corinthians",
- "intHomeScore": "1",
- "intRound": "18",
- "intAwayScore": "3",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-30",
- "dateEventLocal": "2026-05-30",
- "strTime": "20:30:00",
- "strTimeLocal": "17:30:00",
- "strGroup": "",
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fbtwta1769683336.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398369",
- "idAPIfootball": "1492288",
- "strTimestamp": "2026-05-30T23:00:00",
- "strEvent": "Santos vs Vitória",
- "strEventAlternate": "Vitória @ Santos",
- "strFilename": "Brazilian Serie A 2026-05-30 Santos vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Santos",
- "strAwayTeam": "Vitória",
- "intHomeScore": "3",
- "intRound": "18",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-30",
- "dateEventLocal": "2026-05-30",
- "strTime": "23:00:00",
- "strTimeLocal": "20:00:00",
- "strGroup": "",
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/rff6dx1769683347.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398363",
- "idAPIfootball": "1492282",
- "strTimestamp": "2026-05-31T14:00:00",
- "strEvent": "Bragantino vs Internacional",
- "strEventAlternate": "Internacional @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-05-31 Bragantino vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "Internacional",
- "intHomeScore": "3",
- "intRound": "18",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-31",
- "dateEventLocal": "2026-05-31",
- "strTime": "14:00:00",
- "strTimeLocal": "11:00:00",
- "strGroup": "",
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0lcm6s1769683325.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398364",
- "idAPIfootball": "1492283",
- "strTimestamp": "2026-05-31T23:30:00",
- "strEvent": "Cruzeiro vs Fluminense",
- "strEventAlternate": "Fluminense @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-05-31 Cruzeiro vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "Fluminense",
- "intHomeScore": "1",
- "intRound": "18",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-31",
- "dateEventLocal": "2026-05-31",
- "strTime": "23:30:00",
- "strTimeLocal": "20:30:00",
- "strGroup": "",
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/x46gpj1769683329.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398367",
- "idAPIfootball": "1492286",
- "strTimestamp": "2026-05-31T19:00:00",
- "strEvent": "Palmeiras vs Chapecoense",
- "strEventAlternate": "Chapecoense @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-05-31 Palmeiras vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": "1",
- "intRound": "18",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-31",
- "dateEventLocal": "2026-05-31",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/t116321769683339.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398368",
- "idAPIfootball": "1492287",
- "strTimestamp": "2026-05-31T23:30:00",
- "strEvent": "Remo vs São Paulo",
- "strEventAlternate": "São Paulo @ Remo",
- "strFilename": "Brazilian Serie A 2026-05-31 Remo vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Remo",
- "strAwayTeam": "São Paulo",
- "intHomeScore": "1",
- "intRound": "18",
- "intAwayScore": "0",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-31",
- "dateEventLocal": "2026-05-31",
- "strTime": "23:30:00",
- "strTimeLocal": "20:30:00",
- "strGroup": "",
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qwss8w1769683343.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398370",
- "idAPIfootball": "1492289",
- "strTimestamp": "2026-05-31T19:00:00",
- "strEvent": "Vasco da Gama vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-05-31 Vasco da Gama vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": "",
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": "0",
- "intRound": "18",
- "intAwayScore": "1",
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
- "dateEvent": "2026-05-31",
- "dateEventLocal": "2026-05-31",
- "strTime": "19:00:00",
- "strTimeLocal": "16:00:00",
- "strGroup": "",
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": "",
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": "",
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/88p9at1769683350.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": "",
- "strVideo": "",
- "strStatus": "FT",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398371",
- "idAPIfootball": "1492290",
- "strTimestamp": "2026-07-22T20:00:00",
- "strEvent": "Atlético Mineiro vs Bahia",
- "strEventAlternate": "Bahia @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-07-22 Atlético Mineiro vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "Bahia",
- "intHomeScore": null,
- "intRound": "19",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-22",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/00nsqq1769683372.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398372",
- "idAPIfootball": "1492291",
- "strTimestamp": "2026-07-22T20:00:00",
- "strEvent": "Botafogo vs Santos",
- "strEventAlternate": "Santos @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-07-22 Botafogo vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "Santos",
- "intHomeScore": null,
- "intRound": "19",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-22",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/28y9y11769683376.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398373",
- "idAPIfootball": "1492292",
- "strTimestamp": "2026-07-22T20:00:00",
- "strEvent": "Chapecoense vs Flamengo",
- "strEventAlternate": "Flamengo @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-07-22 Chapecoense vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "Flamengo",
- "intHomeScore": null,
- "intRound": "19",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-22",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/u3ugaj1769683379.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398374",
- "idAPIfootball": "1492293",
- "strTimestamp": "2026-07-22T20:00:00",
- "strEvent": "Corinthians vs Remo",
- "strEventAlternate": "Remo @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-07-22 Corinthians vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "Remo",
- "intHomeScore": null,
- "intRound": "19",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-22",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/wjlqah1769683383.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398375",
- "idAPIfootball": "1492294",
- "strTimestamp": "2026-07-22T20:00:00",
- "strEvent": "Coritiba vs Palmeiras",
- "strEventAlternate": "Palmeiras @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-07-22 Coritiba vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": null,
- "intRound": "19",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-22",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/u6akpr1769683387.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398376",
- "idAPIfootball": "1492295",
- "strTimestamp": "2026-07-22T20:00:00",
- "strEvent": "Fluminense vs Bragantino",
- "strEventAlternate": "Bragantino @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-07-22 Fluminense vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "Bragantino",
- "intHomeScore": null,
- "intRound": "19",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-22",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ibwxuj1769683390.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398377",
- "idAPIfootball": "1492296",
- "strTimestamp": "2026-07-22T20:00:00",
- "strEvent": "Internacional vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ Internacional",
- "strFilename": "Brazilian Serie A 2026-07-22 Internacional vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Internacional",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": null,
- "intRound": "19",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-22",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kel9dj1769683394.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398378",
- "idAPIfootball": "1492297",
- "strTimestamp": "2026-07-22T20:00:00",
- "strEvent": "Mirassol vs Grêmio",
- "strEventAlternate": "Grêmio @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-07-22 Mirassol vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "Grêmio",
- "intHomeScore": null,
- "intRound": "19",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-22",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ou2k0h1769683398.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398379",
- "idAPIfootball": "1492298",
- "strTimestamp": "2026-07-22T20:00:00",
- "strEvent": "São Paulo vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-07-22 São Paulo vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": null,
- "intRound": "19",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-22",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/k632xc1769683401.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398380",
- "idAPIfootball": "1492299",
- "strTimestamp": "2026-07-22T20:00:00",
- "strEvent": "Vitória vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ Vitória",
- "strFilename": "Brazilian Serie A 2026-07-22 Vitória vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vitória",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": null,
- "intRound": "19",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-22",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ddujgh1769683405.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398381",
- "idAPIfootball": "1492300",
- "strTimestamp": "2026-07-26T20:00:00",
- "strEvent": "Athletico Paranaense vs Internacional",
- "strEventAlternate": "Internacional @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-07-26 Athletico Paranaense vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "Internacional",
- "intHomeScore": null,
- "intRound": "20",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-26",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ososd61769683409.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398382",
- "idAPIfootball": "1492301",
- "strTimestamp": "2026-07-26T20:00:00",
- "strEvent": "Bahia vs Corinthians",
- "strEventAlternate": "Corinthians @ Bahia",
- "strFilename": "Brazilian Serie A 2026-07-26 Bahia vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bahia",
- "strAwayTeam": "Corinthians",
- "intHomeScore": null,
- "intRound": "20",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-26",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4ya7t01769683412.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398383",
- "idAPIfootball": "1492302",
- "strTimestamp": "2026-07-26T20:00:00",
- "strEvent": "Bragantino vs Coritiba",
- "strEventAlternate": "Coritiba @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-07-26 Bragantino vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "Coritiba",
- "intHomeScore": null,
- "intRound": "20",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-26",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ociavi1769683416.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398384",
- "idAPIfootball": "1492303",
- "strTimestamp": "2026-07-26T20:00:00",
- "strEvent": "Cruzeiro vs Botafogo",
- "strEventAlternate": "Botafogo @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-07-26 Cruzeiro vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "Botafogo",
- "intHomeScore": null,
- "intRound": "20",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-26",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/le2rig1769683420.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398385",
- "idAPIfootball": "1492304",
- "strTimestamp": "2026-07-26T20:00:00",
- "strEvent": "Flamengo vs São Paulo",
- "strEventAlternate": "São Paulo @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-07-26 Flamengo vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "São Paulo",
- "intHomeScore": null,
- "intRound": "20",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-26",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/16iahe1769683423.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398386",
- "idAPIfootball": "1492305",
- "strTimestamp": "2026-07-26T20:00:00",
- "strEvent": "Grêmio vs Fluminense",
- "strEventAlternate": "Fluminense @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-07-26 Grêmio vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "Fluminense",
- "intHomeScore": null,
- "intRound": "20",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-26",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/l81t5v1769683445.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398387",
- "idAPIfootball": "1492306",
- "strTimestamp": "2026-07-26T20:00:00",
- "strEvent": "Palmeiras vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-07-26 Palmeiras vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": null,
- "intRound": "20",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-26",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/90c5rd1769683467.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398388",
- "idAPIfootball": "1492307",
- "strTimestamp": "2026-07-26T20:00:00",
- "strEvent": "Remo vs Vitória",
- "strEventAlternate": "Vitória @ Remo",
- "strFilename": "Brazilian Serie A 2026-07-26 Remo vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Remo",
- "strAwayTeam": "Vitória",
- "intHomeScore": null,
- "intRound": "20",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-26",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qnahnz1769683470.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398389",
- "idAPIfootball": "1492308",
- "strTimestamp": "2026-07-26T20:00:00",
- "strEvent": "Santos vs Chapecoense",
- "strEventAlternate": "Chapecoense @ Santos",
- "strFilename": "Brazilian Serie A 2026-07-26 Santos vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Santos",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": null,
- "intRound": "20",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-26",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/j4asdi1769683474.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398390",
- "idAPIfootball": "1492309",
- "strTimestamp": "2026-07-26T20:00:00",
- "strEvent": "Vasco da Gama vs Mirassol",
- "strEventAlternate": "Mirassol @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-07-26 Vasco da Gama vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "Mirassol",
- "intHomeScore": null,
- "intRound": "20",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-26",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/er9myo1769683478.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398391",
- "idAPIfootball": "1492310",
- "strTimestamp": "2026-07-29T20:00:00",
- "strEvent": "Atlético Mineiro vs Bragantino",
- "strEventAlternate": "Bragantino @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-07-29 Atlético Mineiro vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "Bragantino",
- "intHomeScore": null,
- "intRound": "21",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-29",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hz8f8f1769683481.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398392",
- "idAPIfootball": "1492311",
- "strTimestamp": "2026-07-29T20:00:00",
- "strEvent": "Botafogo vs Grêmio",
- "strEventAlternate": "Grêmio @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-07-29 Botafogo vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "Grêmio",
- "intHomeScore": null,
- "intRound": "21",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-29",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/su407g1769683485.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398393",
- "idAPIfootball": "1492312",
- "strTimestamp": "2026-07-29T20:00:00",
- "strEvent": "Chapecoense vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-07-29 Chapecoense vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": null,
- "intRound": "21",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-29",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/661o4k1769683489.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398394",
- "idAPIfootball": "1492313",
- "strTimestamp": "2026-07-29T20:00:00",
- "strEvent": "Corinthians vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-07-29 Corinthians vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": null,
- "intRound": "21",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-29",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ql1uxy1769683492.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398395",
- "idAPIfootball": "1492314",
- "strTimestamp": "2026-07-29T20:00:00",
- "strEvent": "Coritiba vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-07-29 Coritiba vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": null,
- "intRound": "21",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-29",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kng3rz1769683496.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398396",
- "idAPIfootball": "1492315",
- "strTimestamp": "2026-07-29T20:00:00",
- "strEvent": "Fluminense vs Bahia",
- "strEventAlternate": "Bahia @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-07-29 Fluminense vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "Bahia",
- "intHomeScore": null,
- "intRound": "21",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-29",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/s13qni1769683499.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398397",
- "idAPIfootball": "1492316",
- "strTimestamp": "2026-07-29T20:00:00",
- "strEvent": "Internacional vs Flamengo",
- "strEventAlternate": "Flamengo @ Internacional",
- "strFilename": "Brazilian Serie A 2026-07-29 Internacional vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Internacional",
- "strAwayTeam": "Flamengo",
- "intHomeScore": null,
- "intRound": "21",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-29",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/otl9471769683503.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398398",
- "idAPIfootball": "1492317",
- "strTimestamp": "2026-07-29T20:00:00",
- "strEvent": "Mirassol vs Remo",
- "strEventAlternate": "Remo @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-07-29 Mirassol vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "Remo",
- "intHomeScore": null,
- "intRound": "21",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-29",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ff177g1769683507.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398399",
- "idAPIfootball": "1492318",
- "strTimestamp": "2026-07-29T20:00:00",
- "strEvent": "São Paulo vs Santos",
- "strEventAlternate": "Santos @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-07-29 São Paulo vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Santos",
- "intHomeScore": null,
- "intRound": "21",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-29",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jr6wgg1769683510.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398400",
- "idAPIfootball": "1492319",
- "strTimestamp": "2026-07-29T20:00:00",
- "strEvent": "Vitória vs Palmeiras",
- "strEventAlternate": "Palmeiras @ Vitória",
- "strFilename": "Brazilian Serie A 2026-07-29 Vitória vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vitória",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": null,
- "intRound": "21",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-07-29",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/olf5h51769683514.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398401",
- "idAPIfootball": "1492320",
- "strTimestamp": "2026-08-09T20:00:00",
- "strEvent": "Bahia vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ Bahia",
- "strFilename": "Brazilian Serie A 2026-08-09 Bahia vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bahia",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": null,
- "intRound": "22",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-09",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5pnp761769683518.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398402",
- "idAPIfootball": "1492321",
- "strTimestamp": "2026-08-09T20:00:00",
- "strEvent": "Botafogo vs Fluminense",
- "strEventAlternate": "Fluminense @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-08-09 Botafogo vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "Fluminense",
- "intHomeScore": null,
- "intRound": "22",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-09",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1ozvs11769683521.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398403",
- "idAPIfootball": "1492322",
- "strTimestamp": "2026-08-09T20:00:00",
- "strEvent": "Bragantino vs Corinthians",
- "strEventAlternate": "Corinthians @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-08-09 Bragantino vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "Corinthians",
- "intHomeScore": null,
- "intRound": "22",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-09",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/psyp6r1769683525.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398404",
- "idAPIfootball": "1492323",
- "strTimestamp": "2026-08-09T20:00:00",
- "strEvent": "Coritiba vs Chapecoense",
- "strEventAlternate": "Chapecoense @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-08-09 Coritiba vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": null,
- "intRound": "22",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-09",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2airs71769683529.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398405",
- "idAPIfootball": "1492324",
- "strTimestamp": "2026-08-09T20:00:00",
- "strEvent": "Cruzeiro vs Mirassol",
- "strEventAlternate": "Mirassol @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-08-09 Cruzeiro vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "Mirassol",
- "intHomeScore": null,
- "intRound": "22",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-09",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pih0cj1769683532.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398406",
- "idAPIfootball": "1492325",
- "strTimestamp": "2026-08-09T20:00:00",
- "strEvent": "Flamengo vs Vitória",
- "strEventAlternate": "Vitória @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-08-09 Flamengo vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "Vitória",
- "intHomeScore": null,
- "intRound": "22",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-09",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/34972f1769683536.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398407",
- "idAPIfootball": "1492326",
- "strTimestamp": "2026-08-09T20:00:00",
- "strEvent": "Grêmio vs São Paulo",
- "strEventAlternate": "São Paulo @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-08-09 Grêmio vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "São Paulo",
- "intHomeScore": null,
- "intRound": "22",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-09",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zau4fa1769683540.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398408",
- "idAPIfootball": "1492327",
- "strTimestamp": "2026-08-09T20:00:00",
- "strEvent": "Palmeiras vs Internacional",
- "strEventAlternate": "Internacional @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-08-09 Palmeiras vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "Internacional",
- "intHomeScore": null,
- "intRound": "22",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-09",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vdnu5w1769683543.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398409",
- "idAPIfootball": "1492328",
- "strTimestamp": "2026-08-09T20:00:00",
- "strEvent": "Remo vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ Remo",
- "strFilename": "Brazilian Serie A 2026-08-09 Remo vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Remo",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": null,
- "intRound": "22",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-09",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mynbi01769683547.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398410",
- "idAPIfootball": "1492329",
- "strTimestamp": "2026-08-09T20:00:00",
- "strEvent": "Santos vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ Santos",
- "strFilename": "Brazilian Serie A 2026-08-09 Santos vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Santos",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": null,
- "intRound": "22",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-09",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/nfhnmi1769683552.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398411",
- "idAPIfootball": "1492330",
- "strTimestamp": "2026-08-16T20:00:00",
- "strEvent": "Athletico Paranaense vs Bragantino",
- "strEventAlternate": "Bragantino @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-08-16 Athletico Paranaense vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "Bragantino",
- "intHomeScore": null,
- "intRound": "23",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-16",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/rbksw71769683555.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398412",
- "idAPIfootball": "1492331",
- "strTimestamp": "2026-08-16T20:00:00",
- "strEvent": "Atlético Mineiro vs Grêmio",
- "strEventAlternate": "Grêmio @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-08-16 Atlético Mineiro vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "Grêmio",
- "intHomeScore": null,
- "intRound": "23",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-16",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/idwwnd1769683559.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398413",
- "idAPIfootball": "1492332",
- "strTimestamp": "2026-08-16T20:00:00",
- "strEvent": "Chapecoense vs Bahia",
- "strEventAlternate": "Bahia @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-08-16 Chapecoense vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "Bahia",
- "intHomeScore": null,
- "intRound": "23",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-16",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4wa7h91769683563.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398414",
- "idAPIfootball": "1492333",
- "strTimestamp": "2026-08-16T20:00:00",
- "strEvent": "Corinthians vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-08-16 Corinthians vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": null,
- "intRound": "23",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-16",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yaj02x1769683566.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398415",
- "idAPIfootball": "1492334",
- "strTimestamp": "2026-08-16T20:00:00",
- "strEvent": "Fluminense vs Palmeiras",
- "strEventAlternate": "Palmeiras @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-08-16 Fluminense vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": null,
- "intRound": "23",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-16",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/esbsjs1769683588.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398416",
- "idAPIfootball": "1492335",
- "strTimestamp": "2026-08-16T20:00:00",
- "strEvent": "Internacional vs Remo",
- "strEventAlternate": "Remo @ Internacional",
- "strFilename": "Brazilian Serie A 2026-08-16 Internacional vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Internacional",
- "strAwayTeam": "Remo",
- "intHomeScore": null,
- "intRound": "23",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-16",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8pbzlx1769683592.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398417",
- "idAPIfootball": "1492336",
- "strTimestamp": "2026-08-16T20:00:00",
- "strEvent": "Mirassol vs Flamengo",
- "strEventAlternate": "Flamengo @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-08-16 Mirassol vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "Flamengo",
- "intHomeScore": null,
- "intRound": "23",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-16",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zwits11769683595.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398418",
- "idAPIfootball": "1492337",
- "strTimestamp": "2026-08-16T20:00:00",
- "strEvent": "São Paulo vs Coritiba",
- "strEventAlternate": "Coritiba @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-08-16 São Paulo vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Coritiba",
- "intHomeScore": null,
- "intRound": "23",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-16",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fmkktb1769683599.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398419",
- "idAPIfootball": "1492338",
- "strTimestamp": "2026-08-16T20:00:00",
- "strEvent": "Vasco da Gama vs Santos",
- "strEventAlternate": "Santos @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-08-16 Vasco da Gama vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "Santos",
- "intHomeScore": null,
- "intRound": "23",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-16",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/q3whub1769683602.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398420",
- "idAPIfootball": "1492339",
- "strTimestamp": "2026-08-16T20:00:00",
- "strEvent": "Vitória vs Botafogo",
- "strEventAlternate": "Botafogo @ Vitória",
- "strFilename": "Brazilian Serie A 2026-08-16 Vitória vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vitória",
- "strAwayTeam": "Botafogo",
- "intHomeScore": null,
- "intRound": "23",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-16",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/rxnwsy1769683606.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398421",
- "idAPIfootball": "1492340",
- "strTimestamp": "2026-08-23T20:00:00",
- "strEvent": "Botafogo vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-08-23 Botafogo vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": null,
- "intRound": "24",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-23",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/eokzb61769683610.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398422",
- "idAPIfootball": "1492341",
- "strTimestamp": "2026-08-23T20:00:00",
- "strEvent": "Bragantino vs Grêmio",
- "strEventAlternate": "Grêmio @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-08-23 Bragantino vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "Grêmio",
- "intHomeScore": null,
- "intRound": "24",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-23",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8o1jrk1769683613.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398423",
- "idAPIfootball": "1492342",
- "strTimestamp": "2026-08-23T20:00:00",
- "strEvent": "Chapecoense vs São Paulo",
- "strEventAlternate": "São Paulo @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-08-23 Chapecoense vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "São Paulo",
- "intHomeScore": null,
- "intRound": "24",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-23",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1pyuv71769683617.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398424",
- "idAPIfootball": "1492343",
- "strTimestamp": "2026-08-23T20:00:00",
- "strEvent": "Coritiba vs Corinthians",
- "strEventAlternate": "Corinthians @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-08-23 Coritiba vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "Corinthians",
- "intHomeScore": null,
- "intRound": "24",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-23",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zjfuln1769683621.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398425",
- "idAPIfootball": "1492344",
- "strTimestamp": "2026-08-23T20:00:00",
- "strEvent": "Cruzeiro vs Flamengo",
- "strEventAlternate": "Flamengo @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-08-23 Cruzeiro vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "Flamengo",
- "intHomeScore": null,
- "intRound": "24",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-23",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/gkbqf71769683624.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398426",
- "idAPIfootball": "1492345",
- "strTimestamp": "2026-08-23T20:00:00",
- "strEvent": "Fluminense vs Remo",
- "strEventAlternate": "Remo @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-08-23 Fluminense vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "Remo",
- "intHomeScore": null,
- "intRound": "24",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-23",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fst1nm1769683628.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398427",
- "idAPIfootball": "1492346",
- "strTimestamp": "2026-08-23T20:00:00",
- "strEvent": "Internacional vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ Internacional",
- "strFilename": "Brazilian Serie A 2026-08-23 Internacional vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Internacional",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": null,
- "intRound": "24",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-23",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4862vw1769683632.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398428",
- "idAPIfootball": "1492347",
- "strTimestamp": "2026-08-23T20:00:00",
- "strEvent": "Palmeiras vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-08-23 Palmeiras vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": null,
- "intRound": "24",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-23",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4bdnyp1769683635.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398429",
- "idAPIfootball": "1492348",
- "strTimestamp": "2026-08-23T20:00:00",
- "strEvent": "Santos vs Mirassol",
- "strEventAlternate": "Mirassol @ Santos",
- "strFilename": "Brazilian Serie A 2026-08-23 Santos vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Santos",
- "strAwayTeam": "Mirassol",
- "intHomeScore": null,
- "intRound": "24",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-23",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zi0mxw1769683639.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398430",
- "idAPIfootball": "1492349",
- "strTimestamp": "2026-08-23T20:00:00",
- "strEvent": "Vitória vs Bahia",
- "strEventAlternate": "Bahia @ Vitória",
- "strFilename": "Brazilian Serie A 2026-08-23 Vitória vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vitória",
- "strAwayTeam": "Bahia",
- "intHomeScore": null,
- "intRound": "24",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-23",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/n3khpu1769683643.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398431",
- "idAPIfootball": "1492350",
- "strTimestamp": "2026-08-30T20:00:00",
- "strEvent": "Athletico Paranaense vs Fluminense",
- "strEventAlternate": "Fluminense @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-08-30 Athletico Paranaense vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "Fluminense",
- "intHomeScore": null,
- "intRound": "25",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-30",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/bpz7qf1769683646.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398432",
- "idAPIfootball": "1492351",
- "strTimestamp": "2026-08-30T20:00:00",
- "strEvent": "Atlético Mineiro vs Vitória",
- "strEventAlternate": "Vitória @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-08-30 Atlético Mineiro vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "Vitória",
- "intHomeScore": null,
- "intRound": "25",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-30",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/aysldu1769683650.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398433",
- "idAPIfootball": "1492352",
- "strTimestamp": "2026-08-30T20:00:00",
- "strEvent": "Bahia vs Internacional",
- "strEventAlternate": "Internacional @ Bahia",
- "strFilename": "Brazilian Serie A 2026-08-30 Bahia vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bahia",
- "strAwayTeam": "Internacional",
- "intHomeScore": null,
- "intRound": "25",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-30",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zx0n1w1769683654.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398434",
- "idAPIfootball": "1492353",
- "strTimestamp": "2026-08-30T20:00:00",
- "strEvent": "Corinthians vs Santos",
- "strEventAlternate": "Santos @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-08-30 Corinthians vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "Santos",
- "intHomeScore": null,
- "intRound": "25",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-30",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/99ce9e1769683657.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398435",
- "idAPIfootball": "1492354",
- "strTimestamp": "2026-08-30T20:00:00",
- "strEvent": "Flamengo vs Botafogo",
- "strEventAlternate": "Botafogo @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-08-30 Flamengo vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "Botafogo",
- "intHomeScore": null,
- "intRound": "25",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-30",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zu73mn1769683661.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398436",
- "idAPIfootball": "1492355",
- "strTimestamp": "2026-08-30T20:00:00",
- "strEvent": "Grêmio vs Chapecoense",
- "strEventAlternate": "Chapecoense @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-08-30 Grêmio vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": null,
- "intRound": "25",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-30",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hn6yxd1769683665.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398437",
- "idAPIfootball": "1492356",
- "strTimestamp": "2026-08-30T20:00:00",
- "strEvent": "Mirassol vs Palmeiras",
- "strEventAlternate": "Palmeiras @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-08-30 Mirassol vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": null,
- "intRound": "25",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-30",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/1rglph1769683669.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398438",
- "idAPIfootball": "1492357",
- "strTimestamp": "2026-08-30T20:00:00",
- "strEvent": "Remo vs Coritiba",
- "strEventAlternate": "Coritiba @ Remo",
- "strFilename": "Brazilian Serie A 2026-08-30 Remo vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Remo",
- "strAwayTeam": "Coritiba",
- "intHomeScore": null,
- "intRound": "25",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-30",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pz6umo1769683690.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398439",
- "idAPIfootball": "1492358",
- "strTimestamp": "2026-08-30T20:00:00",
- "strEvent": "São Paulo vs Bragantino",
- "strEventAlternate": "Bragantino @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-08-30 São Paulo vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Bragantino",
- "intHomeScore": null,
- "intRound": "25",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-30",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yiu03z1769683694.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398440",
- "idAPIfootball": "1492359",
- "strTimestamp": "2026-08-30T20:00:00",
- "strEvent": "Vasco da Gama vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-08-30 Vasco da Gama vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": null,
- "intRound": "25",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-08-30",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hy79jv1769683698.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398441",
- "idAPIfootball": "1492360",
- "strTimestamp": "2026-09-06T20:00:00",
- "strEvent": "Botafogo vs Palmeiras",
- "strEventAlternate": "Palmeiras @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-09-06 Botafogo vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": null,
- "intRound": "26",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-06",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vcc4681769683701.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398442",
- "idAPIfootball": "1492361",
- "strTimestamp": "2026-09-06T20:00:00",
- "strEvent": "Bragantino vs Bahia",
- "strEventAlternate": "Bahia @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-09-06 Bragantino vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "Bahia",
- "intHomeScore": null,
- "intRound": "26",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-06",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8tw0gn1769683705.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398443",
- "idAPIfootball": "1492362",
- "strTimestamp": "2026-09-06T20:00:00",
- "strEvent": "Corinthians vs Chapecoense",
- "strEventAlternate": "Chapecoense @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-09-06 Corinthians vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": null,
- "intRound": "26",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-06",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/snepit1769683708.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398444",
- "idAPIfootball": "1492363",
- "strTimestamp": "2026-09-06T20:00:00",
- "strEvent": "Coritiba vs Mirassol",
- "strEventAlternate": "Mirassol @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-09-06 Coritiba vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "Mirassol",
- "intHomeScore": null,
- "intRound": "26",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-06",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/s12s601769683712.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398445",
- "idAPIfootball": "1492364",
- "strTimestamp": "2026-09-06T20:00:00",
- "strEvent": "Cruzeiro vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-09-06 Cruzeiro vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": null,
- "intRound": "26",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-06",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zc48cg1769683716.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398446",
- "idAPIfootball": "1492365",
- "strTimestamp": "2026-09-06T20:00:00",
- "strEvent": "Fluminense vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-09-06 Fluminense vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": null,
- "intRound": "26",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-06",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/i86spe1769683719.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398447",
- "idAPIfootball": "1492366",
- "strTimestamp": "2026-09-06T20:00:00",
- "strEvent": "Internacional vs Santos",
- "strEventAlternate": "Santos @ Internacional",
- "strFilename": "Brazilian Serie A 2026-09-06 Internacional vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Internacional",
- "strAwayTeam": "Santos",
- "intHomeScore": null,
- "intRound": "26",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-06",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4avx0l1769683723.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398448",
- "idAPIfootball": "1492367",
- "strTimestamp": "2026-09-06T20:00:00",
- "strEvent": "Remo vs Flamengo",
- "strEventAlternate": "Flamengo @ Remo",
- "strFilename": "Brazilian Serie A 2026-09-06 Remo vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Remo",
- "strAwayTeam": "Flamengo",
- "intHomeScore": null,
- "intRound": "26",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-06",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8wg56f1769683726.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398449",
- "idAPIfootball": "1492368",
- "strTimestamp": "2026-09-06T20:00:00",
- "strEvent": "São Paulo vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-09-06 São Paulo vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": null,
- "intRound": "26",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-06",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/lnghol1769683730.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398450",
- "idAPIfootball": "1492369",
- "strTimestamp": "2026-09-06T20:00:00",
- "strEvent": "Vitória vs Grêmio",
- "strEventAlternate": "Grêmio @ Vitória",
- "strFilename": "Brazilian Serie A 2026-09-06 Vitória vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vitória",
- "strAwayTeam": "Grêmio",
- "intHomeScore": null,
- "intRound": "26",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-06",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2iytgx1769683734.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398451",
- "idAPIfootball": "1492370",
- "strTimestamp": "2026-09-13T20:00:00",
- "strEvent": "Atlético Mineiro vs Fluminense",
- "strEventAlternate": "Fluminense @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-09-13 Atlético Mineiro vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "Fluminense",
- "intHomeScore": null,
- "intRound": "27",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-13",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jhyhsg1769683738.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398452",
- "idAPIfootball": "1492371",
- "strTimestamp": "2026-09-13T20:00:00",
- "strEvent": "Bahia vs Remo",
- "strEventAlternate": "Remo @ Bahia",
- "strFilename": "Brazilian Serie A 2026-09-13 Bahia vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bahia",
- "strAwayTeam": "Remo",
- "intHomeScore": null,
- "intRound": "27",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-13",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kkeypv1769683741.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398453",
- "idAPIfootball": "1492372",
- "strTimestamp": "2026-09-13T20:00:00",
- "strEvent": "Botafogo vs Bragantino",
- "strEventAlternate": "Bragantino @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-09-13 Botafogo vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "Bragantino",
- "intHomeScore": null,
- "intRound": "27",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-13",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kyu9s91769683745.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398454",
- "idAPIfootball": "1492373",
- "strTimestamp": "2026-09-13T20:00:00",
- "strEvent": "Chapecoense vs Internacional",
- "strEventAlternate": "Internacional @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-09-13 Chapecoense vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "Internacional",
- "intHomeScore": null,
- "intRound": "27",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-13",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8459hw1769683748.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398455",
- "idAPIfootball": "1492374",
- "strTimestamp": "2026-09-13T20:00:00",
- "strEvent": "Coritiba vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-09-13 Coritiba vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": null,
- "intRound": "27",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-13",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/u2xytp1769683770.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398456",
- "idAPIfootball": "1492375",
- "strTimestamp": "2026-09-13T20:00:00",
- "strEvent": "Flamengo vs Corinthians",
- "strEventAlternate": "Corinthians @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-09-13 Flamengo vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "Corinthians",
- "intHomeScore": null,
- "intRound": "27",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-13",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/k35w7t1769683774.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398457",
- "idAPIfootball": "1492376",
- "strTimestamp": "2026-09-13T20:00:00",
- "strEvent": "Grêmio vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-09-13 Grêmio vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": null,
- "intRound": "27",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-13",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qp1tcg1769683777.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398458",
- "idAPIfootball": "1492377",
- "strTimestamp": "2026-09-13T20:00:00",
- "strEvent": "Mirassol vs Vitória",
- "strEventAlternate": "Vitória @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-09-13 Mirassol vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "Vitória",
- "intHomeScore": null,
- "intRound": "27",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-13",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/fpkf7n1769683781.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398459",
- "idAPIfootball": "1492378",
- "strTimestamp": "2026-09-13T20:00:00",
- "strEvent": "Palmeiras vs São Paulo",
- "strEventAlternate": "São Paulo @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-09-13 Palmeiras vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "São Paulo",
- "intHomeScore": null,
- "intRound": "27",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-13",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/qx12ac1769683784.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398460",
- "idAPIfootball": "1492379",
- "strTimestamp": "2026-09-13T20:00:00",
- "strEvent": "Santos vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ Santos",
- "strFilename": "Brazilian Serie A 2026-09-13 Santos vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Santos",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": null,
- "intRound": "27",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-13",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/09h6b11769683788.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398461",
- "idAPIfootball": "1492380",
- "strTimestamp": "2026-09-20T20:00:00",
- "strEvent": "Athletico Paranaense vs Bahia",
- "strEventAlternate": "Bahia @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-09-20 Athletico Paranaense vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "Bahia",
- "intHomeScore": null,
- "intRound": "28",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-20",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mldodw1769683792.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398462",
- "idAPIfootball": "1492381",
- "strTimestamp": "2026-09-20T20:00:00",
- "strEvent": "Atlético Mineiro vs Chapecoense",
- "strEventAlternate": "Chapecoense @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-09-20 Atlético Mineiro vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": null,
- "intRound": "28",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-20",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/uoobbb1769683814.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398463",
- "idAPIfootball": "1492382",
- "strTimestamp": "2026-09-20T20:00:00",
- "strEvent": "Corinthians vs Fluminense",
- "strEventAlternate": "Fluminense @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-09-20 Corinthians vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "Fluminense",
- "intHomeScore": null,
- "intRound": "28",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-20",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/rhwtgi1769683818.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398464",
- "idAPIfootball": "1492383",
- "strTimestamp": "2026-09-20T20:00:00",
- "strEvent": "Flamengo vs Bragantino",
- "strEventAlternate": "Bragantino @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-09-20 Flamengo vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "Bragantino",
- "intHomeScore": null,
- "intRound": "28",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-20",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/21uwxh1769683821.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398465",
- "idAPIfootball": "1492384",
- "strTimestamp": "2026-09-20T20:00:00",
- "strEvent": "Grêmio vs Palmeiras",
- "strEventAlternate": "Palmeiras @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-09-20 Grêmio vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": null,
- "intRound": "28",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-20",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zyp7yv1769683825.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398466",
- "idAPIfootball": "1492385",
- "strTimestamp": "2026-09-20T20:00:00",
- "strEvent": "Mirassol vs Botafogo",
- "strEventAlternate": "Botafogo @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-09-20 Mirassol vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "Botafogo",
- "intHomeScore": null,
- "intRound": "28",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-20",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/cbilmu1769683829.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398467",
- "idAPIfootball": "1492386",
- "strTimestamp": "2026-09-20T20:00:00",
- "strEvent": "Remo vs Santos",
- "strEventAlternate": "Santos @ Remo",
- "strFilename": "Brazilian Serie A 2026-09-20 Remo vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Remo",
- "strAwayTeam": "Santos",
- "intHomeScore": null,
- "intRound": "28",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-20",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7z1gnd1769683832.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398468",
- "idAPIfootball": "1492387",
- "strTimestamp": "2026-09-20T20:00:00",
- "strEvent": "São Paulo vs Internacional",
- "strEventAlternate": "Internacional @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-09-20 São Paulo vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Internacional",
- "intHomeScore": null,
- "intRound": "28",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-20",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5ml4w41769683836.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398469",
- "idAPIfootball": "1492388",
- "strTimestamp": "2026-09-20T20:00:00",
- "strEvent": "Vasco da Gama vs Coritiba",
- "strEventAlternate": "Coritiba @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-09-20 Vasco da Gama vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "Coritiba",
- "intHomeScore": null,
- "intRound": "28",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-20",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/cbd9681769683840.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398470",
- "idAPIfootball": "1492389",
- "strTimestamp": "2026-09-20T20:00:00",
- "strEvent": "Vitória vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ Vitória",
- "strFilename": "Brazilian Serie A 2026-09-20 Vitória vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vitória",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": null,
- "intRound": "28",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-09-20",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/z11qpl1769683843.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398471",
- "idAPIfootball": "1492390",
- "strTimestamp": "2026-10-07T20:00:00",
- "strEvent": "Athletico Paranaense vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-10-07 Athletico Paranaense vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": null,
- "intRound": "29",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-07",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yvaxh71769683847.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398472",
- "idAPIfootball": "1492391",
- "strTimestamp": "2026-10-07T20:00:00",
- "strEvent": "Botafogo vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-10-07 Botafogo vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": null,
- "intRound": "29",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-07",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9k7dmp1769683851.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398473",
- "idAPIfootball": "1492392",
- "strTimestamp": "2026-10-07T20:00:00",
- "strEvent": "Bragantino vs Mirassol",
- "strEventAlternate": "Mirassol @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-10-07 Bragantino vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "Mirassol",
- "intHomeScore": null,
- "intRound": "29",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-07",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/cxiqfj1769683854.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398474",
- "idAPIfootball": "1492393",
- "strTimestamp": "2026-10-07T20:00:00",
- "strEvent": "Cruzeiro vs São Paulo",
- "strEventAlternate": "São Paulo @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-10-07 Cruzeiro vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "São Paulo",
- "intHomeScore": null,
- "intRound": "29",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-07",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2r7qjp1769683858.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398475",
- "idAPIfootball": "1492394",
- "strTimestamp": "2026-10-07T20:00:00",
- "strEvent": "Fluminense vs Coritiba",
- "strEventAlternate": "Coritiba @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-10-07 Fluminense vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "Coritiba",
- "intHomeScore": null,
- "intRound": "29",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-07",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/p40hl91769683862.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398476",
- "idAPIfootball": "1492395",
- "strTimestamp": "2026-10-07T20:00:00",
- "strEvent": "Internacional vs Corinthians",
- "strEventAlternate": "Corinthians @ Internacional",
- "strFilename": "Brazilian Serie A 2026-10-07 Internacional vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Internacional",
- "strAwayTeam": "Corinthians",
- "intHomeScore": null,
- "intRound": "29",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-07",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/a7eq3r1769683865.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398477",
- "idAPIfootball": "1492396",
- "strTimestamp": "2026-10-07T20:00:00",
- "strEvent": "Palmeiras vs Bahia",
- "strEventAlternate": "Bahia @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-10-07 Palmeiras vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "Bahia",
- "intHomeScore": null,
- "intRound": "29",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-07",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pubone1769683869.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398478",
- "idAPIfootball": "1492397",
- "strTimestamp": "2026-10-07T20:00:00",
- "strEvent": "Remo vs Grêmio",
- "strEventAlternate": "Grêmio @ Remo",
- "strFilename": "Brazilian Serie A 2026-10-07 Remo vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Remo",
- "strAwayTeam": "Grêmio",
- "intHomeScore": null,
- "intRound": "29",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-07",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mtuet81769683873.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398479",
- "idAPIfootball": "1492398",
- "strTimestamp": "2026-10-07T20:00:00",
- "strEvent": "Santos vs Flamengo",
- "strEventAlternate": "Flamengo @ Santos",
- "strFilename": "Brazilian Serie A 2026-10-07 Santos vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Santos",
- "strAwayTeam": "Flamengo",
- "intHomeScore": null,
- "intRound": "29",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-07",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/v19brd1769683877.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398480",
- "idAPIfootball": "1492399",
- "strTimestamp": "2026-10-07T20:00:00",
- "strEvent": "Vitória vs Chapecoense",
- "strEventAlternate": "Chapecoense @ Vitória",
- "strFilename": "Brazilian Serie A 2026-10-07 Vitória vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vitória",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": null,
- "intRound": "29",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-07",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/h0cuqk1769683898.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398481",
- "idAPIfootball": "1492400",
- "strTimestamp": "2026-10-11T20:00:00",
- "strEvent": "Atlético Mineiro vs Santos",
- "strEventAlternate": "Santos @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-10-11 Atlético Mineiro vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "Santos",
- "intHomeScore": null,
- "intRound": "30",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-11",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3wbd0p1769683902.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398482",
- "idAPIfootball": "1492401",
- "strTimestamp": "2026-10-11T20:00:00",
- "strEvent": "Bahia vs Mirassol",
- "strEventAlternate": "Mirassol @ Bahia",
- "strFilename": "Brazilian Serie A 2026-10-11 Bahia vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bahia",
- "strAwayTeam": "Mirassol",
- "intHomeScore": null,
- "intRound": "30",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-11",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9gojw81769683905.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398483",
- "idAPIfootball": "1492402",
- "strTimestamp": "2026-10-11T20:00:00",
- "strEvent": "Bragantino vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-10-11 Bragantino vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": null,
- "intRound": "30",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-11",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vzflu21769683909.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398484",
- "idAPIfootball": "1492403",
- "strTimestamp": "2026-10-11T20:00:00",
- "strEvent": "Chapecoense vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-10-11 Chapecoense vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": null,
- "intRound": "30",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-11",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/rt22i31769683913.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398485",
- "idAPIfootball": "1492404",
- "strTimestamp": "2026-10-11T20:00:00",
- "strEvent": "Coritiba vs Botafogo",
- "strEventAlternate": "Botafogo @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-10-11 Coritiba vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "Botafogo",
- "intHomeScore": null,
- "intRound": "30",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-11",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yh57ps1769683917.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398486",
- "idAPIfootball": "1492405",
- "strTimestamp": "2026-10-11T20:00:00",
- "strEvent": "Flamengo vs Fluminense",
- "strEventAlternate": "Fluminense @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-10-11 Flamengo vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "Fluminense",
- "intHomeScore": null,
- "intRound": "30",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-11",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2dm13h1769683920.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398487",
- "idAPIfootball": "1492406",
- "strTimestamp": "2026-10-11T20:00:00",
- "strEvent": "Grêmio vs Internacional",
- "strEventAlternate": "Internacional @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-10-11 Grêmio vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "Internacional",
- "intHomeScore": null,
- "intRound": "30",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-11",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/501yfh1769683924.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398488",
- "idAPIfootball": "1492407",
- "strTimestamp": "2026-10-11T20:00:00",
- "strEvent": "Palmeiras vs Corinthians",
- "strEventAlternate": "Corinthians @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-10-11 Palmeiras vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "Corinthians",
- "intHomeScore": null,
- "intRound": "30",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-11",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/u3t8e81769683945.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398489",
- "idAPIfootball": "1492408",
- "strTimestamp": "2026-10-11T20:00:00",
- "strEvent": "São Paulo vs Vitória",
- "strEventAlternate": "Vitória @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-10-11 São Paulo vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Vitória",
- "intHomeScore": null,
- "intRound": "30",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-11",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/z21rko1769683949.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398490",
- "idAPIfootball": "1492409",
- "strTimestamp": "2026-10-11T20:00:00",
- "strEvent": "Vasco da Gama vs Remo",
- "strEventAlternate": "Remo @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-10-11 Vasco da Gama vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "Remo",
- "intHomeScore": null,
- "intRound": "30",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-11",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/smw8rb1769683953.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398491",
- "idAPIfootball": "1492410",
- "strTimestamp": "2026-10-18T20:00:00",
- "strEvent": "Athletico Paranaense vs Palmeiras",
- "strEventAlternate": "Palmeiras @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-10-18 Athletico Paranaense vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": null,
- "intRound": "31",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-18",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/nxovgm1769683957.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398492",
- "idAPIfootball": "1492411",
- "strTimestamp": "2026-10-18T20:00:00",
- "strEvent": "Atlético Mineiro vs Coritiba",
- "strEventAlternate": "Coritiba @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-10-18 Atlético Mineiro vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "Coritiba",
- "intHomeScore": null,
- "intRound": "31",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-18",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9yp9uv1769683960.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398493",
- "idAPIfootball": "1492412",
- "strTimestamp": "2026-10-18T20:00:00",
- "strEvent": "Bahia vs Flamengo",
- "strEventAlternate": "Flamengo @ Bahia",
- "strFilename": "Brazilian Serie A 2026-10-18 Bahia vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bahia",
- "strAwayTeam": "Flamengo",
- "intHomeScore": null,
- "intRound": "31",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-18",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mni7jf1769683964.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398494",
- "idAPIfootball": "1492413",
- "strTimestamp": "2026-10-18T20:00:00",
- "strEvent": "Botafogo vs Chapecoense",
- "strEventAlternate": "Chapecoense @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-10-18 Botafogo vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": null,
- "intRound": "31",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-18",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/edsgui1769683967.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398495",
- "idAPIfootball": "1492414",
- "strTimestamp": "2026-10-18T20:00:00",
- "strEvent": "Corinthians vs Vitória",
- "strEventAlternate": "Vitória @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-10-18 Corinthians vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "Vitória",
- "intHomeScore": null,
- "intRound": "31",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-18",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hgrybj1769683971.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398496",
- "idAPIfootball": "1492415",
- "strTimestamp": "2026-10-18T20:00:00",
- "strEvent": "Fluminense vs Santos",
- "strEventAlternate": "Santos @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-10-18 Fluminense vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "Santos",
- "intHomeScore": null,
- "intRound": "31",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-18",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/b6kfkp1769683975.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398497",
- "idAPIfootball": "1492416",
- "strTimestamp": "2026-10-18T20:00:00",
- "strEvent": "Grêmio vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-10-18 Grêmio vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": null,
- "intRound": "31",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-18",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/tsenxw1769683978.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398498",
- "idAPIfootball": "1492417",
- "strTimestamp": "2026-10-18T20:00:00",
- "strEvent": "Mirassol vs Internacional",
- "strEventAlternate": "Internacional @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-10-18 Mirassol vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "Internacional",
- "intHomeScore": null,
- "intRound": "31",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-18",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/akccte1769683982.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398499",
- "idAPIfootball": "1492418",
- "strTimestamp": "2026-10-18T20:00:00",
- "strEvent": "Remo vs Bragantino",
- "strEventAlternate": "Bragantino @ Remo",
- "strFilename": "Brazilian Serie A 2026-10-18 Remo vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Remo",
- "strAwayTeam": "Bragantino",
- "intHomeScore": null,
- "intRound": "31",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-18",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/m68juk1769683986.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398500",
- "idAPIfootball": "1492419",
- "strTimestamp": "2026-10-18T20:00:00",
- "strEvent": "São Paulo vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-10-18 São Paulo vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": null,
- "intRound": "31",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-18",
- "dateEventLocal": null,
- "strTime": "20:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/az1rok1769683989.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398501",
- "idAPIfootball": "1492420",
- "strTimestamp": "2026-10-25T21:00:00",
- "strEvent": "Chapecoense vs Fluminense",
- "strEventAlternate": "Fluminense @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-10-25 Chapecoense vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "Fluminense",
- "intHomeScore": null,
- "intRound": "32",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-25",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kjzxz41769683993.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398502",
- "idAPIfootball": "1492421",
- "strTimestamp": "2026-10-25T21:00:00",
- "strEvent": "Coritiba vs Grêmio",
- "strEventAlternate": "Grêmio @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-10-25 Coritiba vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "Grêmio",
- "intHomeScore": null,
- "intRound": "32",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-25",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/08m1631769684015.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398503",
- "idAPIfootball": "1492422",
- "strTimestamp": "2026-10-25T21:00:00",
- "strEvent": "Cruzeiro vs Remo",
- "strEventAlternate": "Remo @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-10-25 Cruzeiro vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "Remo",
- "intHomeScore": null,
- "intRound": "32",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-25",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5vfapu1769684037.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398504",
- "idAPIfootball": "1492423",
- "strTimestamp": "2026-10-25T21:00:00",
- "strEvent": "Flamengo vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-10-25 Flamengo vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": null,
- "intRound": "32",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-25",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kk9fs91769684040.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398505",
- "idAPIfootball": "1492424",
- "strTimestamp": "2026-10-25T21:00:00",
- "strEvent": "Internacional vs Botafogo",
- "strEventAlternate": "Botafogo @ Internacional",
- "strFilename": "Brazilian Serie A 2026-10-25 Internacional vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Internacional",
- "strAwayTeam": "Botafogo",
- "intHomeScore": null,
- "intRound": "32",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-25",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9bbvoh1769684044.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398506",
- "idAPIfootball": "1492425",
- "strTimestamp": "2026-10-25T21:00:00",
- "strEvent": "Mirassol vs São Paulo",
- "strEventAlternate": "São Paulo @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-10-25 Mirassol vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "São Paulo",
- "intHomeScore": null,
- "intRound": "32",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-25",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/uthkld1769684048.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398507",
- "idAPIfootball": "1492426",
- "strTimestamp": "2026-10-25T21:00:00",
- "strEvent": "Palmeiras vs Bragantino",
- "strEventAlternate": "Bragantino @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-10-25 Palmeiras vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "Bragantino",
- "intHomeScore": null,
- "intRound": "32",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-25",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/oq0sc91769684051.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398508",
- "idAPIfootball": "1492427",
- "strTimestamp": "2026-10-25T21:00:00",
- "strEvent": "Santos vs Bahia",
- "strEventAlternate": "Bahia @ Santos",
- "strFilename": "Brazilian Serie A 2026-10-25 Santos vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Santos",
- "strAwayTeam": "Bahia",
- "intHomeScore": null,
- "intRound": "32",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-25",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/8zfe7q1769684055.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398509",
- "idAPIfootball": "1492428",
- "strTimestamp": "2026-10-25T21:00:00",
- "strEvent": "Vasco da Gama vs Corinthians",
- "strEventAlternate": "Corinthians @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-10-25 Vasco da Gama vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "Corinthians",
- "intHomeScore": null,
- "intRound": "32",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-25",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/hoykd01769684059.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398510",
- "idAPIfootball": "1492429",
- "strTimestamp": "2026-10-25T21:00:00",
- "strEvent": "Vitória vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ Vitória",
- "strFilename": "Brazilian Serie A 2026-10-25 Vitória vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vitória",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": null,
- "intRound": "32",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-25",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jmp9ez1769684062.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398511",
- "idAPIfootball": "1492430",
- "strTimestamp": "2026-10-28T21:00:00",
- "strEvent": "Atlético Mineiro vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-10-28 Atlético Mineiro vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": null,
- "intRound": "33",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-28",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/vzdh0c1769684066.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398512",
- "idAPIfootball": "1492431",
- "strTimestamp": "2026-10-28T21:00:00",
- "strEvent": "Bahia vs São Paulo",
- "strEventAlternate": "São Paulo @ Bahia",
- "strFilename": "Brazilian Serie A 2026-10-28 Bahia vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bahia",
- "strAwayTeam": "São Paulo",
- "intHomeScore": null,
- "intRound": "33",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-28",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yj3pm81769684070.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398513",
- "idAPIfootball": "1492432",
- "strTimestamp": "2026-10-28T21:00:00",
- "strEvent": "Bragantino vs Chapecoense",
- "strEventAlternate": "Chapecoense @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-10-28 Bragantino vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": null,
- "intRound": "33",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-28",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/6h58wl1769684073.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398514",
- "idAPIfootball": "1492433",
- "strTimestamp": "2026-10-28T21:00:00",
- "strEvent": "Corinthians vs Mirassol",
- "strEventAlternate": "Mirassol @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-10-28 Corinthians vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "Mirassol",
- "intHomeScore": null,
- "intRound": "33",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-28",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0lgxqh1769684077.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398515",
- "idAPIfootball": "1492434",
- "strTimestamp": "2026-10-28T21:00:00",
- "strEvent": "Coritiba vs Vitória",
- "strEventAlternate": "Vitória @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-10-28 Coritiba vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "Vitória",
- "intHomeScore": null,
- "intRound": "33",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-28",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/33qbsu1769684080.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398516",
- "idAPIfootball": "1492435",
- "strTimestamp": "2026-10-28T21:00:00",
- "strEvent": "Fluminense vs Internacional",
- "strEventAlternate": "Internacional @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-10-28 Fluminense vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "Internacional",
- "intHomeScore": null,
- "intRound": "33",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-28",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/efqjvh1769684102.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398517",
- "idAPIfootball": "1492436",
- "strTimestamp": "2026-10-28T21:00:00",
- "strEvent": "Grêmio vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-10-28 Grêmio vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": null,
- "intRound": "33",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-28",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/osjf7l1769684105.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398518",
- "idAPIfootball": "1492437",
- "strTimestamp": "2026-10-28T21:00:00",
- "strEvent": "Remo vs Botafogo",
- "strEventAlternate": "Botafogo @ Remo",
- "strFilename": "Brazilian Serie A 2026-10-28 Remo vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Remo",
- "strAwayTeam": "Botafogo",
- "intHomeScore": null,
- "intRound": "33",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-28",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/z6gn471769684109.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398519",
- "idAPIfootball": "1492438",
- "strTimestamp": "2026-10-28T21:00:00",
- "strEvent": "Santos vs Palmeiras",
- "strEventAlternate": "Palmeiras @ Santos",
- "strFilename": "Brazilian Serie A 2026-10-28 Santos vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Santos",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": null,
- "intRound": "33",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-28",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/kz9cvx1769684113.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398520",
- "idAPIfootball": "1492439",
- "strTimestamp": "2026-10-28T21:00:00",
- "strEvent": "Vasco da Gama vs Flamengo",
- "strEventAlternate": "Flamengo @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-10-28 Vasco da Gama vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "Flamengo",
- "intHomeScore": null,
- "intRound": "33",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-10-28",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/57utdh1769684116.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398521",
- "idAPIfootball": "1492440",
- "strTimestamp": "2026-11-04T21:00:00",
- "strEvent": "Athletico Paranaense vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-11-04 Athletico Paranaense vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": null,
- "intRound": "34",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-04",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/cmb91c1769684120.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398522",
- "idAPIfootball": "1492441",
- "strTimestamp": "2026-11-04T21:00:00",
- "strEvent": "Botafogo vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-11-04 Botafogo vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": null,
- "intRound": "34",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-04",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/o93d221769684123.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398523",
- "idAPIfootball": "1492442",
- "strTimestamp": "2026-11-04T21:00:00",
- "strEvent": "Bragantino vs Santos",
- "strEventAlternate": "Santos @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-11-04 Bragantino vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "Santos",
- "intHomeScore": null,
- "intRound": "34",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-04",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yityt81769684127.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398524",
- "idAPIfootball": "1492443",
- "strTimestamp": "2026-11-04T21:00:00",
- "strEvent": "Chapecoense vs Mirassol",
- "strEventAlternate": "Mirassol @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-11-04 Chapecoense vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "Mirassol",
- "intHomeScore": null,
- "intRound": "34",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-04",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/iuqyq11769684130.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398525",
- "idAPIfootball": "1492444",
- "strTimestamp": "2026-11-04T21:00:00",
- "strEvent": "Cruzeiro vs Bahia",
- "strEventAlternate": "Bahia @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-11-04 Cruzeiro vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "Bahia",
- "intHomeScore": null,
- "intRound": "34",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-04",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/69of8a1769684134.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398526",
- "idAPIfootball": "1492445",
- "strTimestamp": "2026-11-04T21:00:00",
- "strEvent": "Flamengo vs Grêmio",
- "strEventAlternate": "Grêmio @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-11-04 Flamengo vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "Grêmio",
- "intHomeScore": null,
- "intRound": "34",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-04",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/edy11k1769684138.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398527",
- "idAPIfootball": "1492446",
- "strTimestamp": "2026-11-04T21:00:00",
- "strEvent": "Internacional vs Coritiba",
- "strEventAlternate": "Coritiba @ Internacional",
- "strFilename": "Brazilian Serie A 2026-11-04 Internacional vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Internacional",
- "strAwayTeam": "Coritiba",
- "intHomeScore": null,
- "intRound": "34",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-04",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/srv0hq1769684141.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398528",
- "idAPIfootball": "1492447",
- "strTimestamp": "2026-11-04T21:00:00",
- "strEvent": "Palmeiras vs Remo",
- "strEventAlternate": "Remo @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-11-04 Palmeiras vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "Remo",
- "intHomeScore": null,
- "intRound": "34",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-04",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mghpbt1769684145.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398529",
- "idAPIfootball": "1492448",
- "strTimestamp": "2026-11-04T21:00:00",
- "strEvent": "São Paulo vs Corinthians",
- "strEventAlternate": "Corinthians @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-11-04 São Paulo vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Corinthians",
- "intHomeScore": null,
- "intRound": "34",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-04",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/gnci6b1769684148.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398530",
- "idAPIfootball": "1492449",
- "strTimestamp": "2026-11-04T21:00:00",
- "strEvent": "Vitória vs Fluminense",
- "strEventAlternate": "Fluminense @ Vitória",
- "strFilename": "Brazilian Serie A 2026-11-04 Vitória vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vitória",
- "strAwayTeam": "Fluminense",
- "intHomeScore": null,
- "intRound": "34",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-04",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/u18t691769684152.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398531",
- "idAPIfootball": "1492450",
- "strTimestamp": "2026-11-18T21:00:00",
- "strEvent": "Corinthians vs Botafogo",
- "strEventAlternate": "Botafogo @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-11-18 Corinthians vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "Botafogo",
- "intHomeScore": null,
- "intRound": "35",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-18",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/2vc7ga1769684156.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398532",
- "idAPIfootball": "1492451",
- "strTimestamp": "2026-11-18T21:00:00",
- "strEvent": "Coritiba vs Santos",
- "strEventAlternate": "Santos @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-11-18 Coritiba vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "Santos",
- "intHomeScore": null,
- "intRound": "35",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-18",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/o7o7in1769684159.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398533",
- "idAPIfootball": "1492452",
- "strTimestamp": "2026-11-18T21:00:00",
- "strEvent": "Cruzeiro vs Palmeiras",
- "strEventAlternate": "Palmeiras @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-11-18 Cruzeiro vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": null,
- "intRound": "35",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-18",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/rnswh01769684181.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398534",
- "idAPIfootball": "1492453",
- "strTimestamp": "2026-11-18T21:00:00",
- "strEvent": "Flamengo vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-11-18 Flamengo vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": null,
- "intRound": "35",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-18",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/aw46xg1769684185.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398535",
- "idAPIfootball": "1492454",
- "strTimestamp": "2026-11-18T21:00:00",
- "strEvent": "Grêmio vs Bahia",
- "strEventAlternate": "Bahia @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-11-18 Grêmio vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "Bahia",
- "intHomeScore": null,
- "intRound": "35",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-18",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/zddu4s1769684188.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398536",
- "idAPIfootball": "1492455",
- "strTimestamp": "2026-11-18T21:00:00",
- "strEvent": "Mirassol vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-11-18 Mirassol vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": null,
- "intRound": "35",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-18",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/nutxi41769684192.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398537",
- "idAPIfootball": "1492456",
- "strTimestamp": "2026-11-18T21:00:00",
- "strEvent": "Remo vs Chapecoense",
- "strEventAlternate": "Chapecoense @ Remo",
- "strFilename": "Brazilian Serie A 2026-11-18 Remo vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Remo",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": null,
- "intRound": "35",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-18",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/wn3a0x1769684196.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398538",
- "idAPIfootball": "1492457",
- "strTimestamp": "2026-11-18T21:00:00",
- "strEvent": "São Paulo vs Fluminense",
- "strEventAlternate": "Fluminense @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-11-18 São Paulo vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Fluminense",
- "intHomeScore": null,
- "intRound": "35",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-18",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/3441i21769684199.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398539",
- "idAPIfootball": "1492458",
- "strTimestamp": "2026-11-18T21:00:00",
- "strEvent": "Vasco da Gama vs Internacional",
- "strEventAlternate": "Internacional @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-11-18 Vasco da Gama vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "Internacional",
- "intHomeScore": null,
- "intRound": "35",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-18",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7xstjj1769684203.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398540",
- "idAPIfootball": "1492459",
- "strTimestamp": "2026-11-18T21:00:00",
- "strEvent": "Vitória vs Bragantino",
- "strEventAlternate": "Bragantino @ Vitória",
- "strFilename": "Brazilian Serie A 2026-11-18 Vitória vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vitória",
- "strAwayTeam": "Bragantino",
- "intHomeScore": null,
- "intRound": "35",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-18",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4c1lgp1769684206.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398541",
- "idAPIfootball": "1492460",
- "strTimestamp": "2026-11-22T21:00:00",
- "strEvent": "Athletico Paranaense vs Remo",
- "strEventAlternate": "Remo @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-11-22 Athletico Paranaense vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "Remo",
- "intHomeScore": null,
- "intRound": "36",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/pb6we01769684210.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398542",
- "idAPIfootball": "1492461",
- "strTimestamp": "2026-11-22T21:00:00",
- "strEvent": "Atlético Mineiro vs Corinthians",
- "strEventAlternate": "Corinthians @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-11-22 Atlético Mineiro vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "Corinthians",
- "intHomeScore": null,
- "intRound": "36",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/h07dc61769684213.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398543",
- "idAPIfootball": "1492462",
- "strTimestamp": "2026-11-22T21:00:00",
- "strEvent": "Bahia vs Coritiba",
- "strEventAlternate": "Coritiba @ Bahia",
- "strFilename": "Brazilian Serie A 2026-11-22 Bahia vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bahia",
- "strAwayTeam": "Coritiba",
- "intHomeScore": null,
- "intRound": "36",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/y4sgzn1769684217.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398544",
- "idAPIfootball": "1492463",
- "strTimestamp": "2026-11-22T21:00:00",
- "strEvent": "Botafogo vs São Paulo",
- "strEventAlternate": "São Paulo @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-11-22 Botafogo vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "São Paulo",
- "intHomeScore": null,
- "intRound": "36",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/e58wgf1769684221.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398545",
- "idAPIfootball": "1492464",
- "strTimestamp": "2026-11-22T21:00:00",
- "strEvent": "Bragantino vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-11-22 Bragantino vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": null,
- "intRound": "36",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/x8utnq1769684224.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398546",
- "idAPIfootball": "1492465",
- "strTimestamp": "2026-11-22T21:00:00",
- "strEvent": "Chapecoense vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-11-22 Chapecoense vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": null,
- "intRound": "36",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/s7vr0u1769684228.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398547",
- "idAPIfootball": "1492466",
- "strTimestamp": "2026-11-22T21:00:00",
- "strEvent": "Fluminense vs Mirassol",
- "strEventAlternate": "Mirassol @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-11-22 Fluminense vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "Mirassol",
- "intHomeScore": null,
- "intRound": "36",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/5xlq2p1769684231.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398548",
- "idAPIfootball": "1492467",
- "strTimestamp": "2026-11-22T21:00:00",
- "strEvent": "Internacional vs Vitória",
- "strEventAlternate": "Vitória @ Internacional",
- "strFilename": "Brazilian Serie A 2026-11-22 Internacional vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Internacional",
- "strAwayTeam": "Vitória",
- "intHomeScore": null,
- "intRound": "36",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/mlbn131769684235.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398549",
- "idAPIfootball": "1492468",
- "strTimestamp": "2026-11-22T21:00:00",
- "strEvent": "Palmeiras vs Flamengo",
- "strEventAlternate": "Flamengo @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-11-22 Palmeiras vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "Flamengo",
- "intHomeScore": null,
- "intRound": "36",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/34tku51769684239.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398550",
- "idAPIfootball": "1492469",
- "strTimestamp": "2026-11-22T21:00:00",
- "strEvent": "Santos vs Grêmio",
- "strEventAlternate": "Grêmio @ Santos",
- "strFilename": "Brazilian Serie A 2026-11-22 Santos vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Santos",
- "strAwayTeam": "Grêmio",
- "intHomeScore": null,
- "intRound": "36",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-22",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/idld371769684243.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398551",
- "idAPIfootball": "1492470",
- "strTimestamp": "2026-11-29T21:00:00",
- "strEvent": "Atlético Mineiro vs Vasco da Gama",
- "strEventAlternate": "Vasco da Gama @ Atlético Mineiro",
- "strFilename": "Brazilian Serie A 2026-11-29 Atlético Mineiro vs Vasco da Gama",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Atlético Mineiro",
- "strAwayTeam": "Vasco da Gama",
- "intHomeScore": null,
- "intRound": "37",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134299",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "idAwayTeam": "134282",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "28361",
- "strVenue": "Arena MRV",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7lridb1769684246.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398552",
- "idAPIfootball": "1492471",
- "strTimestamp": "2026-11-29T21:00:00",
- "strEvent": "Botafogo vs Bahia",
- "strEventAlternate": "Bahia @ Botafogo",
- "strFilename": "Brazilian Serie A 2026-11-29 Botafogo vs Bahia",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Botafogo",
- "strAwayTeam": "Bahia",
- "intHomeScore": null,
- "intRound": "37",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134285",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "idAwayTeam": "134293",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21647",
- "strVenue": "Estádio OlÃmpico Nilton Santos",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/ewv9vz1769684250.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398553",
- "idAPIfootball": "1492472",
- "strTimestamp": "2026-11-29T21:00:00",
- "strEvent": "Chapecoense vs Palmeiras",
- "strEventAlternate": "Palmeiras @ Chapecoense",
- "strFilename": "Brazilian Serie A 2026-11-29 Chapecoense vs Palmeiras",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Chapecoense",
- "strAwayTeam": "Palmeiras",
- "intHomeScore": null,
- "intRound": "37",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134464",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "idAwayTeam": "134465",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17724",
- "strVenue": "Arena Condá",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/4hbjqp1769684272.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398554",
- "idAPIfootball": "1492473",
- "strTimestamp": "2026-11-29T21:00:00",
- "strEvent": "Corinthians vs Grêmio",
- "strEventAlternate": "Grêmio @ Corinthians",
- "strFilename": "Brazilian Serie A 2026-11-29 Corinthians vs Grêmio",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Corinthians",
- "strAwayTeam": "Grêmio",
- "intHomeScore": null,
- "intRound": "37",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134284",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "idAwayTeam": "134288",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16461",
- "strVenue": "Neo QuÃmica Arena",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/wzxu4i1769684275.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398555",
- "idAPIfootball": "1492474",
- "strTimestamp": "2026-11-29T21:00:00",
- "strEvent": "Coritiba vs Flamengo",
- "strEventAlternate": "Flamengo @ Coritiba",
- "strFilename": "Brazilian Serie A 2026-11-29 Coritiba vs Flamengo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Coritiba",
- "strAwayTeam": "Flamengo",
- "intHomeScore": null,
- "intRound": "37",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134298",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "idAwayTeam": "134287",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17686",
- "strVenue": "Estádio Major Antônio Couto Pereira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/9vjsrt1769684279.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398556",
- "idAPIfootball": "1492475",
- "strTimestamp": "2026-11-29T21:00:00",
- "strEvent": "Fluminense vs Cruzeiro",
- "strEventAlternate": "Cruzeiro @ Fluminense",
- "strFilename": "Brazilian Serie A 2026-11-29 Fluminense vs Cruzeiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Fluminense",
- "strAwayTeam": "Cruzeiro",
- "intHomeScore": null,
- "intRound": "37",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134296",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "idAwayTeam": "134294",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/g5bib41769684282.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398557",
- "idAPIfootball": "1492476",
- "strTimestamp": "2026-11-29T21:00:00",
- "strEvent": "Internacional vs Bragantino",
- "strEventAlternate": "Bragantino @ Internacional",
- "strFilename": "Brazilian Serie A 2026-11-29 Internacional vs Bragantino",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Internacional",
- "strAwayTeam": "Bragantino",
- "intHomeScore": null,
- "intRound": "37",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134281",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "idAwayTeam": "134736",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21163",
- "strVenue": "Estádio Beira-Rio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/h4n3ha1769684286.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398558",
- "idAPIfootball": "1492477",
- "strTimestamp": "2026-11-29T21:00:00",
- "strEvent": "Mirassol vs Athletico Paranaense",
- "strEventAlternate": "Athletico Paranaense @ Mirassol",
- "strFilename": "Brazilian Serie A 2026-11-29 Mirassol vs Athletico Paranaense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Mirassol",
- "strAwayTeam": "Athletico Paranaense",
- "intHomeScore": null,
- "intRound": "37",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "141181",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "idAwayTeam": "134297",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21007",
- "strVenue": "Estádio José Maria de Campos Maia",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/par68j1769684290.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398559",
- "idAPIfootball": "1492478",
- "strTimestamp": "2026-11-29T21:00:00",
- "strEvent": "São Paulo vs Remo",
- "strEventAlternate": "Remo @ São Paulo",
- "strFilename": "Brazilian Serie A 2026-11-29 São Paulo vs Remo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "São Paulo",
- "strAwayTeam": "Remo",
- "intHomeScore": null,
- "intRound": "37",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134291",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "idAwayTeam": "137818",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16061",
- "strVenue": "Estádio do Morumbi",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/swqxgv1769684293.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398560",
- "idAPIfootball": "1492479",
- "strTimestamp": "2026-11-29T21:00:00",
- "strEvent": "Vitória vs Santos",
- "strEventAlternate": "Santos @ Vitória",
- "strFilename": "Brazilian Serie A 2026-11-29 Vitória vs Santos",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vitória",
- "strAwayTeam": "Santos",
- "intHomeScore": null,
- "intRound": "37",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-11-29",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134280",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "idAwayTeam": "134286",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "17524",
- "strVenue": "Estádio Manoel Barradas",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/z2siyu1769684297.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398561",
- "idAPIfootball": "1492480",
- "strTimestamp": "2026-12-02T21:00:00",
- "strEvent": "Athletico Paranaense vs São Paulo",
- "strEventAlternate": "São Paulo @ Athletico Paranaense",
- "strFilename": "Brazilian Serie A 2026-12-02 Athletico Paranaense vs São Paulo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Athletico Paranaense",
- "strAwayTeam": "São Paulo",
- "intHomeScore": null,
- "intRound": "38",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-12-02",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134297",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/irzu1u1554237406.png",
- "idAwayTeam": "134291",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/sxpupx1473538135.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16471",
- "strVenue": "Arena da Baixada",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/z2sqyb1769684318.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398562",
- "idAPIfootball": "1492481",
- "strTimestamp": "2026-12-02T21:00:00",
- "strEvent": "Bahia vs Atlético Mineiro",
- "strEventAlternate": "Atlético Mineiro @ Bahia",
- "strFilename": "Brazilian Serie A 2026-12-02 Bahia vs Atlético Mineiro",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bahia",
- "strAwayTeam": "Atlético Mineiro",
- "intHomeScore": null,
- "intRound": "38",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-12-02",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134293",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xuvtsv1473539308.png",
- "idAwayTeam": "134299",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/x5lixs1743742872.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16063",
- "strVenue": "Arena Fonte Nova",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/0o256s1769684322.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398563",
- "idAPIfootball": "1492482",
- "strTimestamp": "2026-12-02T21:00:00",
- "strEvent": "Bragantino vs Fluminense",
- "strEventAlternate": "Fluminense @ Bragantino",
- "strFilename": "Brazilian Serie A 2026-12-02 Bragantino vs Fluminense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Bragantino",
- "strAwayTeam": "Fluminense",
- "intHomeScore": null,
- "intRound": "38",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-12-02",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134736",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2p7tl41701423595.png",
- "idAwayTeam": "134296",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/stvvwp1473538082.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "31370",
- "strVenue": "Estadio Cicero de Souza Marques",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/jmilkp1769684325.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398564",
- "idAPIfootball": "1492483",
- "strTimestamp": "2026-12-02T21:00:00",
- "strEvent": "Cruzeiro vs Internacional",
- "strEventAlternate": "Internacional @ Cruzeiro",
- "strFilename": "Brazilian Serie A 2026-12-02 Cruzeiro vs Internacional",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Cruzeiro",
- "strAwayTeam": "Internacional",
- "intHomeScore": null,
- "intRound": "38",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-12-02",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134294",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/upsvvu1473538059.png",
- "idAwayTeam": "134281",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yprvxx1473538097.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16065",
- "strVenue": "Estádio Mineirão",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/p2w9nc1769684329.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398565",
- "idAPIfootball": "1492484",
- "strTimestamp": "2026-12-02T21:00:00",
- "strEvent": "Flamengo vs Chapecoense",
- "strEventAlternate": "Chapecoense @ Flamengo",
- "strFilename": "Brazilian Serie A 2026-12-02 Flamengo vs Chapecoense",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Flamengo",
- "strAwayTeam": "Chapecoense",
- "intHomeScore": null,
- "intRound": "38",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-12-02",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134287",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/syptwx1473538074.png",
- "idAwayTeam": "134464",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wy0e1i1765900601.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16064",
- "strVenue": "Estádio do Maracanã",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/s2mtvx1769684333.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398566",
- "idAPIfootball": "1492485",
- "strTimestamp": "2026-12-02T21:00:00",
- "strEvent": "Grêmio vs Mirassol",
- "strEventAlternate": "Mirassol @ Grêmio",
- "strFilename": "Brazilian Serie A 2026-12-02 Grêmio vs Mirassol",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Grêmio",
- "strAwayTeam": "Mirassol",
- "intHomeScore": null,
- "intRound": "38",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-12-02",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134288",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvpwyt1473538089.png",
- "idAwayTeam": "141181",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/pw8uo11765900737.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16062",
- "strVenue": "Arena do Grêmio",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yx27si1769684337.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398567",
- "idAPIfootball": "1492486",
- "strTimestamp": "2026-12-02T21:00:00",
- "strEvent": "Palmeiras vs Coritiba",
- "strEventAlternate": "Coritiba @ Palmeiras",
- "strFilename": "Brazilian Serie A 2026-12-02 Palmeiras vs Coritiba",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Palmeiras",
- "strAwayTeam": "Coritiba",
- "intHomeScore": null,
- "intRound": "38",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-12-02",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134465",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vsqwqp1473538105.png",
- "idAwayTeam": "134298",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ywwsyu1473538050.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16914",
- "strVenue": "Allianz Parque",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/yovt841769684358.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398568",
- "idAPIfootball": "1492487",
- "strTimestamp": "2026-12-02T21:00:00",
- "strEvent": "Remo vs Corinthians",
- "strEventAlternate": "Corinthians @ Remo",
- "strFilename": "Brazilian Serie A 2026-12-02 Remo vs Corinthians",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Remo",
- "strAwayTeam": "Corinthians",
- "intHomeScore": null,
- "intRound": "38",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-12-02",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "137818",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/u36jfy1579341655.png",
- "idAwayTeam": "134284",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vvuvps1473538042.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "21013",
- "strVenue": "Estádio Evandro Almeida",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/7ajvae1769684362.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398569",
- "idAPIfootball": "1492488",
- "strTimestamp": "2026-12-02T21:00:00",
- "strEvent": "Santos vs Botafogo",
- "strEventAlternate": "Botafogo @ Santos",
- "strFilename": "Brazilian Serie A 2026-12-02 Santos vs Botafogo",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Santos",
- "strAwayTeam": "Botafogo",
- "intHomeScore": null,
- "intRound": "38",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-12-02",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134286",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/j8xk9g1679447486.png",
- "idAwayTeam": "134285",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/bs5mbw1733004596.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "16485",
- "strVenue": "Estádio Urbano Caldeira",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/51m8851769684366.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- },
- {
- "idEvent": "2398570",
- "idAPIfootball": "1492489",
- "strTimestamp": "2026-12-02T21:00:00",
- "strEvent": "Vasco da Gama vs Vitória",
- "strEventAlternate": "Vitória @ Vasco da Gama",
- "strFilename": "Brazilian Serie A 2026-12-02 Vasco da Gama vs Vitória",
- "strSport": "Soccer",
- "idLeague": "4351",
- "strLeague": "Brazilian Serie A",
- "strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/lywv7t1766787179.png",
- "strSeason": "2026",
- "strDescriptionEN": null,
- "strHomeTeam": "Vasco da Gama",
- "strAwayTeam": "Vitória",
- "intHomeScore": null,
- "intRound": "38",
- "intAwayScore": null,
- "intSpectators": null,
- "strOfficial": "",
- "strWeather": null,
- "dateEvent": "2026-12-02",
- "dateEventLocal": null,
- "strTime": "21:00:00",
- "strTimeLocal": null,
- "strGroup": null,
- "idHomeTeam": "134282",
- "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ynqlxo1630521109.png",
- "idAwayTeam": "134280",
- "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/tysrrx1473538156.png",
- "intScore": null,
- "intScoreVotes": null,
- "strResult": null,
- "idVenue": "23857",
- "strVenue": "Estádio São Januário",
- "strCountry": "Brazil",
- "strCity": null,
- "strPoster": "",
- "strSquare": "",
- "strFanart": null,
- "strThumb": "https://r2.thesportsdb.com/images/media/event/thumb/x9uxcf1769684369.jpg",
- "strBanner": "",
- "strMap": null,
- "strTweet1": null,
- "strVideo": null,
- "strStatus": "NS",
- "strPostponed": "no",
- "strLocked": "unlocked"
- }
- ]
-}
\ No newline at end of file
diff --git a/lib/data/sports/4380.json b/lib/data/sports/4380.json
index 722ab54..edb06c0 100644
--- a/lib/data/sports/4380.json
+++ b/lib/data/sports/4380.json
@@ -1,7 +1,7 @@
{
"leagueId": "4380",
"leagueName": "NHL",
- "updatedAt": "2026-06-12T14:33:54.144Z",
+ "updatedAt": "2026-06-11T02:19:49.067Z",
"events": [
{
"idEvent": "2346883",
diff --git a/lib/data/sports/4387.json b/lib/data/sports/4387.json
index 1e36cfe..fcd2727 100644
--- a/lib/data/sports/4387.json
+++ b/lib/data/sports/4387.json
@@ -1,7 +1,7 @@
{
"leagueId": "4387",
"leagueName": "NBA",
- "updatedAt": "2026-06-12T14:31:29.226Z",
+ "updatedAt": "2026-06-11T06:34:00.453Z",
"events": [
{
"idEvent": "2357365",
diff --git a/lib/data/sports/4391.json b/lib/data/sports/4391.json
index 904da09..3ac656b 100644
--- a/lib/data/sports/4391.json
+++ b/lib/data/sports/4391.json
@@ -1,7 +1,7 @@
{
"leagueId": "4391",
"leagueName": "NFL",
- "updatedAt": "2026-06-12T14:30:14.598Z",
+ "updatedAt": "2026-06-11T06:32:46.666Z",
"events": [
{
"idEvent": "2475374",
diff --git a/lib/data/sports/4408.json b/lib/data/sports/4408.json
index c8f95f3..214c02f 100644
--- a/lib/data/sports/4408.json
+++ b/lib/data/sports/4408.json
@@ -1,7 +1,7 @@
{
"leagueId": "4408",
"leagueName": "NCAA Basketball",
- "updatedAt": "2026-06-12T14:54:48.507Z",
+ "updatedAt": "2026-06-11T07:07:08.265Z",
"events": [
{
"idEvent": "2317910",
diff --git a/lib/data/sports/4424.json b/lib/data/sports/4424.json
index 4a78b56..a2e9e7b 100644
--- a/lib/data/sports/4424.json
+++ b/lib/data/sports/4424.json
@@ -1,7 +1,7 @@
{
"leagueId": "4424",
"leagueName": "MLB",
- "updatedAt": "2026-06-12T14:32:40.609Z",
+ "updatedAt": "2026-06-11T02:18:34.595Z",
"events": [
{
"idEvent": "2386876",
@@ -27850,9 +27850,9 @@
"strDescriptionEN": "",
"strHomeTeam": "Los Angeles Angels",
"strAwayTeam": "Houston Astros",
- "intHomeScore": "10",
+ "intHomeScore": "1",
"intRound": "12",
- "intAwayScore": "1",
+ "intAwayScore": null,
"intSpectators": null,
"strOfficial": "",
"strWeather": "",
@@ -27880,7 +27880,7 @@
"strMap": null,
"strTweet1": "",
"strVideo": "https://www.youtube.com/watch?v=JnM3siC8BaY",
- "strStatus": "FT",
+ "strStatus": "IN3",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -27899,9 +27899,9 @@
"strDescriptionEN": "",
"strHomeTeam": "Colorado Rockies",
"strAwayTeam": "Chicago Cubs",
- "intHomeScore": "7",
+ "intHomeScore": null,
"intRound": "12",
- "intAwayScore": "3",
+ "intAwayScore": "1",
"intSpectators": null,
"strOfficial": "",
"strWeather": "",
@@ -27929,7 +27929,7 @@
"strMap": null,
"strTweet1": "",
"strVideo": "https://www.youtube.com/watch?v=gvigoFJGTZ8",
- "strStatus": "FT",
+ "strStatus": "IN6",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -27948,9 +27948,9 @@
"strDescriptionEN": "",
"strHomeTeam": "Athletics",
"strAwayTeam": "Milwaukee Brewers",
- "intHomeScore": "7",
+ "intHomeScore": null,
"intRound": "12",
- "intAwayScore": "5",
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": "",
@@ -27978,7 +27978,7 @@
"strMap": null,
"strTweet1": "",
"strVideo": "https://www.youtube.com/watch?v=kEAIGJ2vdlA",
- "strStatus": "FT",
+ "strStatus": "IN4",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -27999,7 +27999,7 @@
"strAwayTeam": "Arizona Diamondbacks",
"intHomeScore": "8",
"intRound": "12",
- "intAwayScore": "0",
+ "intAwayScore": null,
"intSpectators": null,
"strOfficial": "",
"strWeather": "",
@@ -28026,8 +28026,8 @@
"strBanner": "",
"strMap": null,
"strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=E-TVdzKtkks",
- "strStatus": "FT",
+ "strVideo": "",
+ "strStatus": "IN9",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -28063,7 +28063,7 @@
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3xrldf1617528682.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": " Toronto Blue Jays Innings:
0 0 0 0 0 1 3 0 0
Hits: 8 - Errors: 0
Philadelphia Phillies Innings:
1 0 3 2 0 0 1 0 0
Hits: 10 - Errors: 1",
+ "strResult": " Toronto Blue Jays Innings:
0 0 0 0 0 1 3 0
Hits: 6 - Errors: 0
Philadelphia Phillies Innings:
1 0 3 2 0 0 1 0 0
Hits: 10 - Errors: 1",
"idVenue": "15805",
"strVenue": "Rogers Centre",
"strCountry": "United States",
@@ -28075,8 +28075,8 @@
"strBanner": "",
"strMap": null,
"strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=UZ2MqQ99tOQ",
- "strStatus": "FT",
+ "strVideo": "",
+ "strStatus": "IN9",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -28124,7 +28124,7 @@
"strBanner": "",
"strMap": null,
"strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=pr3Jt3oBjnM",
+ "strVideo": "",
"strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
@@ -28173,7 +28173,7 @@
"strBanner": "",
"strMap": null,
"strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=fMoO5mJIsYM",
+ "strVideo": "",
"strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
@@ -28222,8 +28222,8 @@
"strBanner": "",
"strMap": null,
"strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=D2ebzCNhjzo",
- "strStatus": "FT",
+ "strVideo": "",
+ "strStatus": "IN9",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -28271,7 +28271,7 @@
"strBanner": "",
"strMap": null,
"strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=mlYPWX0C7SE",
+ "strVideo": "",
"strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
@@ -28320,7 +28320,7 @@
"strBanner": "",
"strMap": null,
"strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=dg9aNKETHSs",
+ "strVideo": "",
"strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
@@ -28340,9 +28340,9 @@
"strDescriptionEN": "",
"strHomeTeam": "Detroit Tigers",
"strAwayTeam": "Minnesota Twins",
- "intHomeScore": "4",
+ "intHomeScore": "3",
"intRound": "12",
- "intAwayScore": "6",
+ "intAwayScore": "5",
"intSpectators": null,
"strOfficial": "",
"strWeather": "",
@@ -28357,7 +28357,7 @@
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/necd5v1521905719.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": " Detroit Tigers Innings:
0 0 1 0 2 0 0 0 1
Hits: 7 - Errors: 0
Minnesota Twins Innings:
0 1 0 0 3 0 2 0 0
Hits: 12 - Errors: 0",
+ "strResult": " Detroit Tigers Innings:
0 0 1 0 2 0
Hits: 4 - Errors: 0
Minnesota Twins Innings:
0 1 0 0 3 0 1
Hits: 8 - Errors: 0",
"idVenue": "28777",
"strVenue": "Comerica Park",
"strCountry": "United States",
@@ -28369,8 +28369,8 @@
"strBanner": "",
"strMap": null,
"strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=wU7EPZ5dtMw",
- "strStatus": "FT",
+ "strVideo": "",
+ "strStatus": "IN7",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -28418,7 +28418,7 @@
"strBanner": "",
"strMap": null,
"strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=dOpgE2BVoPM",
+ "strVideo": "",
"strStatus": "FT",
"strPostponed": "no",
"strLocked": "unlocked"
@@ -28455,7 +28455,7 @@
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yjs76e1617811496.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": " Chicago White Sox Innings:
0 0 0 2 0 0 0 0
Hits: 8 - Errors: 1
Atlanta Braves Innings:
0 0 0 0 0 0 1 0 0
Hits: 7 - Errors: 1",
+ "strResult": " Chicago White Sox Innings:
0 0 0 2 0 0 0 0
Hits: 8 - Errors: 1
Atlanta Braves Innings:
0 0 0 0 0 0 1 0
Hits: 7 - Errors: 1",
"idVenue": "21631",
"strVenue": "Guaranteed Rate Field",
"strCountry": "United States",
@@ -28467,8 +28467,8 @@
"strBanner": "",
"strMap": null,
"strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=RpAqwz6pSpI",
- "strStatus": "FT",
+ "strVideo": "",
+ "strStatus": "IN8",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -28516,8 +28516,8 @@
"strBanner": "",
"strMap": null,
"strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=RhcCLPpGSqA",
- "strStatus": "FT",
+ "strVideo": "",
+ "strStatus": "IN9",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -28538,7 +28538,7 @@
"strAwayTeam": "Texas Rangers",
"intHomeScore": "4",
"intRound": "12",
- "intAwayScore": "6",
+ "intAwayScore": "3",
"intSpectators": null,
"strOfficial": "",
"strWeather": "",
@@ -28553,7 +28553,7 @@
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qt9qki1521893151.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": " Kansas City Royals Innings:
0 1 0 0 1 1 1 0 0 2
Hits: 13 - Errors: 0
Texas Rangers Innings:
0 0 0 2 0 0 1 1 0 2
Hits: 11 - Errors: 0",
+ "strResult": " Kansas City Royals Innings:
0 1 0 0 1 1 1
Hits: 12 - Errors: 0
Texas Rangers Innings:
0 0 0 2 0 0 1 0
Hits: 9 - Errors: 0",
"idVenue": "30848",
"strVenue": "Kauffman Stadium",
"strCountry": "United States",
@@ -28565,8 +28565,8 @@
"strBanner": "",
"strMap": null,
"strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=sH8vGcBtMys",
- "strStatus": "FT",
+ "strVideo": "",
+ "strStatus": "IN8",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -28582,40 +28582,40 @@
"strLeague": "MLB",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/c5r83j1521893739.png",
"strSeason": "2026",
- "strDescriptionEN": "",
+ "strDescriptionEN": null,
"strHomeTeam": "Los Angeles Angels",
"strAwayTeam": "Houston Astros",
- "intHomeScore": "3",
+ "intHomeScore": "1",
"intRound": "12",
- "intAwayScore": "2",
+ "intAwayScore": "0",
"intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
+ "strOfficial": null,
+ "strWeather": null,
"dateEvent": "2026-06-11",
- "dateEventLocal": "2026-06-11",
+ "dateEventLocal": null,
"strTime": "01:38:00",
- "strTimeLocal": "",
- "strGroup": "",
+ "strTimeLocal": null,
+ "strGroup": null,
"idHomeTeam": "135258",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/vswsvx1432577476.png",
"idAwayTeam": "135256",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/miwigx1521893583.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": " Los Angeles Angels Innings:
1 0 0 0 1 0 0 0 0 0
Hits: 7 - Errors: 0
Houston Astros Innings:
0 0 0 0 0 1 0 1 0 0
Hits: 4 - Errors: 0",
+ "strResult": " Los Angeles Angels Innings:
1 0
Hits: 2 - Errors: 0
Houston Astros Innings:
0 0 0
Hits: 0 - Errors: 0",
"idVenue": "23214",
- "strVenue": "Angel Stadium",
+ "strVenue": "Angel Stadium of Anaheim",
"strCountry": "United States",
- "strCity": "",
+ "strCity": null,
"strPoster": "",
"strSquare": "",
"strFanart": null,
"strThumb": "https://www.thesportsdb.com/images/media/event/thumb/kbupbk1780299635.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=SHO_ZDQZ4z4",
- "strStatus": "FT",
+ "strTweet1": null,
+ "strVideo": null,
+ "strStatus": "IN3",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -28631,40 +28631,40 @@
"strLeague": "MLB",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/c5r83j1521893739.png",
"strSeason": "2026",
- "strDescriptionEN": "",
+ "strDescriptionEN": null,
"strHomeTeam": "Colorado Rockies",
"strAwayTeam": "Chicago Cubs",
- "intHomeScore": "3",
+ "intHomeScore": "0",
"intRound": "12",
- "intAwayScore": "2",
+ "intAwayScore": "1",
"intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
+ "strOfficial": null,
+ "strWeather": null,
"dateEvent": "2026-06-11",
- "dateEventLocal": "2026-06-11",
+ "dateEventLocal": null,
"strTime": "00:40:00",
- "strTimeLocal": "",
- "strGroup": "",
+ "strTimeLocal": null,
+ "strGroup": null,
"idHomeTeam": "135271",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/r7q6ko1687608395.png",
"idAwayTeam": "135269",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wxbe071521892391.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": " Colorado Rockies Innings:
0 0 0 0 0 0 0 2 1
Hits: 8 - Errors: 0
Chicago Cubs Innings:
0 0 0 1 0 0 0 0 1
Hits: 5 - Errors: 0",
+ "strResult": " Colorado Rockies Innings:
0 0 0 0 0
Hits: 2 - Errors: 0
Chicago Cubs Innings:
0 0 0 1 0 0
Hits: 2 - Errors: 0",
"idVenue": "30978",
"strVenue": "Coors Field",
"strCountry": "United States",
- "strCity": "",
+ "strCity": null,
"strPoster": "",
"strSquare": "",
"strFanart": null,
"strThumb": "https://www.thesportsdb.com/images/media/event/thumb/9bmahf1780299636.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=xWzHBf5kGzQ",
- "strStatus": "FT",
+ "strTweet1": null,
+ "strVideo": null,
+ "strStatus": "IN6",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -28680,40 +28680,40 @@
"strLeague": "MLB",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/c5r83j1521893739.png",
"strSeason": "2026",
- "strDescriptionEN": "",
+ "strDescriptionEN": null,
"strHomeTeam": "Athletics",
"strAwayTeam": "Milwaukee Brewers",
- "intHomeScore": "4",
+ "intHomeScore": "0",
"intRound": "12",
"intAwayScore": "3",
"intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
+ "strOfficial": null,
+ "strWeather": null,
"dateEvent": "2026-06-11",
- "dateEventLocal": "2026-06-11",
+ "dateEventLocal": null,
"strTime": "01:05:00",
- "strTimeLocal": "",
- "strGroup": "",
+ "strTimeLocal": null,
+ "strGroup": null,
"idHomeTeam": "135261",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/cyvrv31741640777.png",
"idAwayTeam": "135274",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/08kh2a1595775193.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": " Athletics Innings:
0 0 0 0 0 1 3 0
Hits: 9 - Errors: 0
Milwaukee Brewers Innings:
1 1 1 0 0 0 0 0 0
Hits: 11 - Errors: 0",
+ "strResult": " Athletics Innings:
0 0 0
Hits: 2 - Errors: 0
Milwaukee Brewers Innings:
1 1 1 0
Hits: 4 - Errors: 0",
"idVenue": "31213",
"strVenue": "Sutter Health Park",
"strCountry": "United States",
- "strCity": "",
+ "strCity": null,
"strPoster": "",
"strSquare": "",
"strFanart": null,
"strThumb": "https://www.thesportsdb.com/images/media/event/thumb/niklc61780299640.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=O6itQMSbKXs",
- "strStatus": "FT",
+ "strTweet1": null,
+ "strVideo": null,
+ "strStatus": "IN4",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -28729,40 +28729,40 @@
"strLeague": "MLB",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/c5r83j1521893739.png",
"strSeason": "2026",
- "strDescriptionEN": "",
+ "strDescriptionEN": null,
"strHomeTeam": "Miami Marlins",
"strAwayTeam": "Arizona Diamondbacks",
- "intHomeScore": "2",
+ "intHomeScore": null,
"intRound": "12",
- "intAwayScore": "0",
+ "intAwayScore": null,
"intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
+ "strOfficial": null,
+ "strWeather": null,
"dateEvent": "2026-06-11",
- "dateEventLocal": "2026-06-11",
+ "dateEventLocal": null,
"strTime": "17:10:00",
- "strTimeLocal": "",
- "strGroup": "",
+ "strTimeLocal": null,
+ "strGroup": null,
"idHomeTeam": "135273",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/0722fs1546001701.png",
"idAwayTeam": "135267",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xe5wlo1713861863.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": " Miami Marlins Innings:
1 0 0 1 0 0 0 0
Hits: 5 - Errors: 1
Arizona Diamondbacks Innings:
0 0 0 0 0 0 0 0 0
Hits: 3 - Errors: 0",
+ "strResult": " Miami Marlins Innings:
Hits: - Errors:
Arizona Diamondbacks Innings:
Hits: - Errors: ",
"idVenue": "30985",
"strVenue": "LoanDepot Park",
"strCountry": "United States",
- "strCity": "",
+ "strCity": null,
"strPoster": "",
"strSquare": "",
"strFanart": null,
"strThumb": "https://www.thesportsdb.com/images/media/event/thumb/gusyz91780299642.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=BMq9kR8IuCM",
- "strStatus": "FT",
+ "strTweet1": null,
+ "strVideo": null,
+ "strStatus": "NS",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -28778,40 +28778,40 @@
"strLeague": "MLB",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/c5r83j1521893739.png",
"strSeason": "2026",
- "strDescriptionEN": "",
+ "strDescriptionEN": null,
"strHomeTeam": "Pittsburgh Pirates",
"strAwayTeam": "Los Angeles Dodgers",
- "intHomeScore": "6",
+ "intHomeScore": null,
"intRound": "12",
- "intAwayScore": "8",
+ "intAwayScore": null,
"intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
+ "strOfficial": null,
+ "strWeather": null,
"dateEvent": "2026-06-11",
- "dateEventLocal": "2026-06-11",
+ "dateEventLocal": null,
"strTime": "22:40:00",
- "strTimeLocal": "",
- "strGroup": "",
+ "strTimeLocal": null,
+ "strGroup": null,
"idHomeTeam": "135277",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/kw6uqr1617527138.png",
"idAwayTeam": "135272",
"strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/32uxn21778269451.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": " Pittsburgh Pirates Innings:
0 0 0 0 4 0 0 2 0
Hits: 12 - Errors: 0
Los Angeles Dodgers Innings:
0 0 3 2 0 0 2 1 0
Hits: 10 - Errors: 0",
+ "strResult": " Pittsburgh Pirates Innings:
Hits: - Errors:
Los Angeles Dodgers Innings:
Hits: - Errors: ",
"idVenue": "30983",
"strVenue": "PNC Park",
"strCountry": "United States",
- "strCity": "",
+ "strCity": null,
"strPoster": "",
"strSquare": "",
"strFanart": null,
"strThumb": "https://www.thesportsdb.com/images/media/event/thumb/f7fhpk1780299642.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=MlvWK38dneM",
- "strStatus": "FT",
+ "strTweet1": null,
+ "strVideo": null,
+ "strStatus": "NS",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -28827,40 +28827,40 @@
"strLeague": "MLB",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/c5r83j1521893739.png",
"strSeason": "2026",
- "strDescriptionEN": "",
+ "strDescriptionEN": null,
"strHomeTeam": "New York Mets",
"strAwayTeam": "St. Louis Cardinals",
- "intHomeScore": "5",
+ "intHomeScore": null,
"intRound": "12",
- "intAwayScore": "4",
+ "intAwayScore": null,
"intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
+ "strOfficial": null,
+ "strWeather": null,
"dateEvent": "2026-06-11",
- "dateEventLocal": "2026-06-11",
+ "dateEventLocal": null,
"strTime": "17:10:00",
- "strTimeLocal": "",
- "strGroup": "",
+ "strTimeLocal": null,
+ "strGroup": null,
"idHomeTeam": "135275",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/rxqspq1431540337.png",
"idAwayTeam": "135280",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/uvyvyr1424003273.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": " New York Mets Innings:
3 0 0 0 1 0 1 0
Hits: 10 - Errors: 0
St. Louis Cardinals Innings:
1 3 0 0 0 0 0 0 0
Hits: 7 - Errors: 0",
+ "strResult": " New York Mets Innings:
Hits: - Errors:
St. Louis Cardinals Innings:
Hits: - Errors: ",
"idVenue": "23848",
"strVenue": "Citi Field",
"strCountry": "United States",
- "strCity": "",
+ "strCity": null,
"strPoster": "",
"strSquare": "",
"strFanart": null,
"strThumb": "https://www.thesportsdb.com/images/media/event/thumb/33zpp01780299643.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=3qsOVsvhUps",
- "strStatus": "FT",
+ "strTweet1": null,
+ "strVideo": null,
+ "strStatus": "NS",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -28876,40 +28876,40 @@
"strLeague": "MLB",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/c5r83j1521893739.png",
"strSeason": "2026",
- "strDescriptionEN": "",
+ "strDescriptionEN": null,
"strHomeTeam": "Detroit Tigers",
"strAwayTeam": "Minnesota Twins",
- "intHomeScore": "11",
+ "intHomeScore": null,
"intRound": "12",
- "intAwayScore": "0",
+ "intAwayScore": null,
"intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
+ "strOfficial": null,
+ "strWeather": null,
"dateEvent": "2026-06-11",
- "dateEventLocal": "2026-06-11",
+ "dateEventLocal": null,
"strTime": "17:10:00",
- "strTimeLocal": "",
- "strGroup": "",
+ "strTimeLocal": null,
+ "strGroup": null,
"idHomeTeam": "135255",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/9dib6o1554032173.png",
"idAwayTeam": "135259",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/necd5v1521905719.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": " Detroit Tigers Innings:
1 0 0 3 1 2 1 3
Hits: 13 - Errors: 0
Minnesota Twins Innings:
0 0 0 0 0 0 0 0 0
Hits: 5 - Errors: 0",
+ "strResult": " Detroit Tigers Innings:
Hits: - Errors:
Minnesota Twins Innings:
Hits: - Errors: ",
"idVenue": "28777",
"strVenue": "Comerica Park",
"strCountry": "United States",
- "strCity": "",
+ "strCity": null,
"strPoster": "",
"strSquare": "",
"strFanart": null,
"strThumb": "https://www.thesportsdb.com/images/media/event/thumb/627cxf1780299644.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=XUqagYgHS-Q",
- "strStatus": "FT",
+ "strTweet1": null,
+ "strVideo": null,
+ "strStatus": "NS",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -28925,40 +28925,40 @@
"strLeague": "MLB",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/c5r83j1521893739.png",
"strSeason": "2026",
- "strDescriptionEN": "",
+ "strDescriptionEN": null,
"strHomeTeam": "Kansas City Royals",
"strAwayTeam": "Texas Rangers",
- "intHomeScore": "2",
+ "intHomeScore": null,
"intRound": "12",
- "intAwayScore": "4",
+ "intAwayScore": null,
"intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
+ "strOfficial": null,
+ "strWeather": null,
"dateEvent": "2026-06-11",
- "dateEventLocal": "2026-06-11",
+ "dateEventLocal": null,
"strTime": "18:10:00",
- "strTimeLocal": "",
- "strGroup": "",
+ "strTimeLocal": null,
+ "strGroup": null,
"idHomeTeam": "135257",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ii3rz81554031260.png",
"idAwayTeam": "135264",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/qt9qki1521893151.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": " Kansas City Royals Innings:
0 0 0 2 0 0 0 0 0
Hits: 6 - Errors: 0
Texas Rangers Innings:
1 1 1 0 0 1 0 0 0
Hits: 11 - Errors: 0",
+ "strResult": " Kansas City Royals Innings:
Hits: - Errors:
Texas Rangers Innings:
Hits: - Errors: ",
"idVenue": "30848",
"strVenue": "Kauffman Stadium",
"strCountry": "United States",
- "strCity": "",
+ "strCity": null,
"strPoster": "",
"strSquare": "",
"strFanart": null,
"strThumb": "https://www.thesportsdb.com/images/media/event/thumb/2a34md1780299645.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=fS1LAhqLGcg",
- "strStatus": "FT",
+ "strTweet1": null,
+ "strVideo": null,
+ "strStatus": "NS",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -28974,40 +28974,40 @@
"strLeague": "MLB",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/c5r83j1521893739.png",
"strSeason": "2026",
- "strDescriptionEN": "",
+ "strDescriptionEN": null,
"strHomeTeam": "Colorado Rockies",
"strAwayTeam": "Chicago Cubs",
- "intHomeScore": "3",
+ "intHomeScore": null,
"intRound": "12",
- "intAwayScore": "9",
+ "intAwayScore": null,
"intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
+ "strOfficial": null,
+ "strWeather": null,
"dateEvent": "2026-06-11",
- "dateEventLocal": "2026-06-11",
+ "dateEventLocal": null,
"strTime": "19:10:00",
- "strTimeLocal": "",
- "strGroup": "",
+ "strTimeLocal": null,
+ "strGroup": null,
"idHomeTeam": "135271",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/r7q6ko1687608395.png",
"idAwayTeam": "135269",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/wxbe071521892391.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": " Colorado Rockies Innings:
0 0 1 1 0 0 0 0 1
Hits: 12 - Errors: 0
Chicago Cubs Innings:
0 0 0 4 2 0 2 1 0
Hits: 10 - Errors: 0",
+ "strResult": " Colorado Rockies Innings:
Hits: - Errors:
Chicago Cubs Innings:
Hits: - Errors: ",
"idVenue": "30978",
"strVenue": "Coors Field",
"strCountry": "United States",
- "strCity": "",
+ "strCity": null,
"strPoster": "",
"strSquare": "",
"strFanart": null,
"strThumb": "https://www.thesportsdb.com/images/media/event/thumb/an2fi51780299646.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=xocUhwLgW9I",
- "strStatus": "FT",
+ "strTweet1": null,
+ "strVideo": null,
+ "strStatus": "NS",
"strPostponed": "no",
"strLocked": "unlocked"
},
@@ -29056,8 +29056,8 @@
"strMap": null,
"strTweet1": null,
"strVideo": null,
- "strStatus": "POST",
- "strPostponed": "yes",
+ "strStatus": "NS",
+ "strPostponed": "no",
"strLocked": "unlocked"
},
{
@@ -29072,40 +29072,40 @@
"strLeague": "MLB",
"strLeagueBadge": "https://r2.thesportsdb.com/images/media/league/badge/c5r83j1521893739.png",
"strSeason": "2026",
- "strDescriptionEN": "",
+ "strDescriptionEN": null,
"strHomeTeam": "Baltimore Orioles",
"strAwayTeam": "Seattle Mariners",
- "intHomeScore": "7",
+ "intHomeScore": null,
"intRound": "12",
- "intAwayScore": "5",
+ "intAwayScore": null,
"intSpectators": null,
- "strOfficial": "",
- "strWeather": "",
+ "strOfficial": null,
+ "strWeather": null,
"dateEvent": "2026-06-11",
- "dateEventLocal": "2026-06-11",
+ "dateEventLocal": null,
"strTime": "23:05:00",
- "strTimeLocal": "",
- "strGroup": "",
+ "strTimeLocal": null,
+ "strGroup": null,
"idHomeTeam": "135251",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ytywvu1431257088.png",
"idAwayTeam": "135262",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/39x9ph1521903933.png",
"intScore": null,
"intScoreVotes": null,
- "strResult": " Baltimore Orioles Innings:
0 0 6 0 1 0 0 0
Hits: 7 - Errors: 1
Seattle Mariners Innings:
1 0 0 4 0 0 0 0 0
Hits: 9 - Errors: 0",
+ "strResult": " Baltimore Orioles Innings:
Hits: - Errors:
Seattle Mariners Innings:
Hits: - Errors: ",
"idVenue": "30843",
"strVenue": "Oriole Park at Camden Yards",
"strCountry": "United States",
- "strCity": "",
+ "strCity": null,
"strPoster": "",
"strSquare": "",
"strFanart": null,
"strThumb": "https://www.thesportsdb.com/images/media/event/thumb/t9g3ug1780299648.jpg",
"strBanner": "",
"strMap": null,
- "strTweet1": "",
- "strVideo": "https://www.youtube.com/watch?v=pSuUESn-eK8",
- "strStatus": "FT",
+ "strTweet1": null,
+ "strVideo": null,
+ "strStatus": "NS",
"strPostponed": "no",
"strLocked": "unlocked"
},
diff --git a/lib/data/sports/4480.json b/lib/data/sports/4480.json
index f15f4d0..6f4fc3b 100644
--- a/lib/data/sports/4480.json
+++ b/lib/data/sports/4480.json
@@ -1,7 +1,7 @@
{
"leagueId": "4480",
"leagueName": "UEFA Champions League",
- "updatedAt": "2026-06-12T14:55:15.176Z",
+ "updatedAt": "2026-06-11T07:07:34.939Z",
"events": [
{
"idEvent": "2328005",
diff --git a/lib/data/sports/4481.json b/lib/data/sports/4481.json
index e90eaef..f5996ac 100644
--- a/lib/data/sports/4481.json
+++ b/lib/data/sports/4481.json
@@ -1,7 +1,7 @@
{
"leagueId": "4481",
"leagueName": "UEFA Europa League",
- "updatedAt": "2026-06-12T14:55:41.584Z",
+ "updatedAt": "2026-06-11T07:08:01.422Z",
"events": [
{
"idEvent": "2327866",
@@ -81,7 +81,7 @@
"idHomeTeam": "133749",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/m15zsh1602774126.png",
"idAwayTeam": "134315",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/oeer261781239315.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lh08ob1625167121.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -177,7 +177,7 @@
"strTimeLocal": "21:00:00",
"strGroup": "",
"idHomeTeam": "133987",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/osgmbz1781157114.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/gz650v1567023440.png",
"idAwayTeam": "133647",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/3uv1641758780002.png",
"intScore": null,
@@ -546,9 +546,9 @@
"idEvent": "2327877",
"idAPIfootball": "1451175",
"strTimestamp": "2025-09-25T19:00:00",
- "strEvent": "Red Bull Salzburg vs Porto",
+ "strEvent": "Red Bull Salzburg vs FC Porto",
"strEventAlternate": "FC Porto @ Red Bull Salzburg",
- "strFilename": "UEFA Europa League 2025-09-25 Red Bull Salzburg vs Porto",
+ "strFilename": "UEFA Europa League 2025-09-25 Red Bull Salzburg vs FC Porto",
"strSport": "Soccer",
"idLeague": "4481",
"strLeague": "UEFA Europa League",
@@ -1477,9 +1477,9 @@
"idEvent": "2327894",
"idAPIfootball": "1451192",
"strTimestamp": "2025-10-02T19:00:00",
- "strEvent": "Porto vs Crvena Zvezda",
+ "strEvent": "FC Porto vs Crvena Zvezda",
"strEventAlternate": "Crvena Zvezda @ FC Porto",
- "strFilename": "UEFA Europa League 2025-10-02 Porto vs Crvena Zvezda",
+ "strFilename": "UEFA Europa League 2025-10-02 FC Porto vs Crvena Zvezda",
"strSport": "Soccer",
"idLeague": "4481",
"strLeague": "UEFA Europa League",
@@ -1502,7 +1502,7 @@
"idHomeTeam": "134114",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xu47rb1628855600.png",
"idAwayTeam": "133987",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/osgmbz1781157114.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/gz650v1567023440.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -1549,7 +1549,7 @@
"strTimeLocal": "21:00:00",
"strGroup": "",
"idHomeTeam": "134315",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/oeer261781239315.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lh08ob1625167121.png",
"idAwayTeam": "133961",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/araidi1579955395.png",
"intScore": null,
@@ -2139,7 +2139,7 @@
"idHomeTeam": "134098",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/8g4aod1678717261.png",
"idAwayTeam": "133987",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/osgmbz1781157114.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/gz650v1567023440.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -2408,9 +2408,9 @@
"idEvent": "2327912",
"idAPIfootball": "1451210",
"strTimestamp": "2025-10-23T19:00:00",
- "strEvent": "Nottingham Forest vs Porto",
+ "strEvent": "Nottingham Forest vs FC Porto",
"strEventAlternate": "FC Porto @ Nottingham Forest",
- "strFilename": "UEFA Europa League 2025-10-23 Nottingham Forest vs Porto",
+ "strFilename": "UEFA Europa League 2025-10-23 Nottingham Forest vs FC Porto",
"strSport": "Soccer",
"idLeague": "4481",
"strLeague": "UEFA Europa League",
@@ -2480,7 +2480,7 @@
"strTimeLocal": "21:00:00",
"strGroup": "",
"idHomeTeam": "134315",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/oeer261781239315.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lh08ob1625167121.png",
"idAwayTeam": "133891",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/s5bpcr1755712262.png",
"intScore": null,
@@ -2800,9 +2800,9 @@
"idEvent": "2327919",
"idAPIfootball": "1451217",
"strTimestamp": "2025-11-06T17:45:00",
- "strEvent": "Utrecht vs Porto",
+ "strEvent": "Utrecht vs FC Porto",
"strEventAlternate": "FC Porto @ Utrecht",
- "strFilename": "UEFA Europa League 2025-11-06 Utrecht vs Porto",
+ "strFilename": "UEFA Europa League 2025-11-06 Utrecht vs FC Porto",
"strSport": "Soccer",
"idLeague": "4481",
"strLeague": "UEFA Europa League",
@@ -2921,7 +2921,7 @@
"strTimeLocal": "17:00:00",
"strGroup": "",
"idHomeTeam": "133987",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/osgmbz1781157114.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/gz650v1567023440.png",
"idAwayTeam": "133711",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2giize1534005340.png",
"intScore": null,
@@ -3462,7 +3462,7 @@
"idHomeTeam": "133601",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/jykrpv1717309891.png",
"idAwayTeam": "134315",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/oeer261781239315.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lh08ob1625167121.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -3878,9 +3878,9 @@
"idEvent": "2327940",
"idAPIfootball": "1451238",
"strTimestamp": "2025-11-27T17:45:00",
- "strEvent": "Porto vs Nice",
+ "strEvent": "FC Porto vs Nice",
"strEventAlternate": "Nice @ FC Porto",
- "strFilename": "UEFA Europa League 2025-11-27 Porto vs Nice",
+ "strFilename": "UEFA Europa League 2025-11-27 FC Porto vs Nice",
"strSport": "Soccer",
"idLeague": "4481",
"strLeague": "UEFA Europa League",
@@ -4146,7 +4146,7 @@
"strTimeLocal": "21:00:00",
"strGroup": "",
"idHomeTeam": "133987",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/osgmbz1781157114.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/gz650v1567023440.png",
"idAwayTeam": "134005",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/123g021759420850.png",
"intScore": null,
@@ -4391,7 +4391,7 @@
"strTimeLocal": "21:00:00",
"strGroup": "",
"idHomeTeam": "134315",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/oeer261781239315.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lh08ob1625167121.png",
"idAwayTeam": "133713",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/blk9771656932845.png",
"intScore": null,
@@ -4540,7 +4540,7 @@
"idHomeTeam": "137743",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/ppg0j71578585847.png",
"idAwayTeam": "133987",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/osgmbz1781157114.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/gz650v1567023440.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -4736,7 +4736,7 @@
"idHomeTeam": "133660",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/yppyux1473454085.png",
"idAwayTeam": "134315",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/oeer261781239315.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lh08ob1625167121.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -5152,9 +5152,9 @@
"idEvent": "2327966",
"idAPIfootball": "1451264",
"strTimestamp": "2025-12-11T20:00:00",
- "strEvent": "Porto vs Malmö",
+ "strEvent": "FC Porto vs Malmö",
"strEventAlternate": "Malmo FF @ FC Porto",
- "strFilename": "UEFA Europa League 2025-12-11 Porto vs Malmö",
+ "strFilename": "UEFA Europa League 2025-12-11 FC Porto vs Malmö",
"strSport": "Soccer",
"idLeague": "4481",
"strLeague": "UEFA Europa League",
@@ -5324,7 +5324,7 @@
"idHomeTeam": "134166",
"strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/429jzd1779940315.png",
"idAwayTeam": "133987",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/osgmbz1781157114.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/gz650v1567023440.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -5667,7 +5667,7 @@
"idHomeTeam": "133653",
"strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/urwtup1473453288.png",
"idAwayTeam": "134315",
- "strAwayTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/oeer261781239315.png",
+ "strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lh08ob1625167121.png",
"intScore": null,
"intScoreVotes": null,
"strResult": "",
@@ -5691,9 +5691,9 @@
"idEvent": "2327977",
"idAPIfootball": "1451275",
"strTimestamp": "2026-01-22T17:45:00",
- "strEvent": "Viktoria Plzeň vs Porto",
+ "strEvent": "Viktoria Plzeň vs FC Porto",
"strEventAlternate": "FC Porto @ Viktoria Plzeň",
- "strFilename": "UEFA Europa League 2026-01-22 Viktoria Plzeň vs Porto",
+ "strFilename": "UEFA Europa League 2026-01-22 Viktoria Plzeň vs FC Porto",
"strSport": "Soccer",
"idLeague": "4481",
"strLeague": "UEFA Europa League",
@@ -6181,9 +6181,9 @@
"idEvent": "2327987",
"idAPIfootball": "1451285",
"strTimestamp": "2026-01-29T20:00:00",
- "strEvent": "Porto vs Rangers",
+ "strEvent": "FC Porto vs Rangers",
"strEventAlternate": "Rangers @ FC Porto",
- "strFilename": "UEFA Europa League 2026-01-29 Porto vs Rangers",
+ "strFilename": "UEFA Europa League 2026-01-29 FC Porto vs Rangers",
"strSport": "Soccer",
"idLeague": "4481",
"strLeague": "UEFA Europa League",
@@ -6498,7 +6498,7 @@
"strTimeLocal": "21:00:00",
"strGroup": "",
"idHomeTeam": "133987",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/osgmbz1781157114.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/gz650v1567023440.png",
"idAwayTeam": "133937",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/xfjtku1690436219.png",
"intScore": null,
@@ -6694,7 +6694,7 @@
"strTimeLocal": "21:00:00",
"strGroup": "",
"idHomeTeam": "134315",
- "strHomeTeamBadge": "https://www.thesportsdb.com/images/media/team/badge/oeer261781239315.png",
+ "strHomeTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/lh08ob1625167121.png",
"idAwayTeam": "134781",
"strAwayTeamBadge": "https://r2.thesportsdb.com/images/media/team/badge/2qi1u31655592366.png",
"intScore": null,
diff --git a/lib/data/sports/4482.json b/lib/data/sports/4482.json
index 0ed9347..9ceb436 100644
--- a/lib/data/sports/4482.json
+++ b/lib/data/sports/4482.json
@@ -1,7 +1,7 @@
{
"leagueId": "4482",
"leagueName": "FA Cup",
- "updatedAt": "2026-06-12T02:36:16.931Z",
+ "updatedAt": "2026-06-11T07:08:20.192Z",
"events": [
{
"idEvent": "2371352",
diff --git a/lib/data/sports/supplemental/136437.json b/lib/data/sports/supplemental/136437.json
deleted file mode 100644
index 6ac37ed..0000000
--- a/lib/data/sports/supplemental/136437.json
+++ /dev/null
@@ -1,579 +0,0 @@
-{
- "teamId": "136437",
- "teamName": "Las Vegas Aces",
- "updatedAt": "2026-06-11T17:08:13.082Z",
- "events": [
- {
- "idEvent": "wnba-sdv-401857219",
- "strEvent": "Phoenix Mercury vs Las Vegas Aces",
- "strHomeTeam": "Phoenix Mercury",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-09-25",
- "strTime": "02:00",
- "strTimestamp": "2026-09-25T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Mortgage Matchup Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857211",
- "strEvent": "Las Vegas Aces vs Los Angeles Sparks",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Los Angeles Sparks",
- "dateEvent": "2026-09-23",
- "strTime": "02:00",
- "strTimestamp": "2026-09-23T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857205",
- "strEvent": "Las Vegas Aces vs Seattle Storm",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Seattle Storm",
- "dateEvent": "2026-09-21",
- "strTime": "01:00",
- "strTimestamp": "2026-09-21T01:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857194",
- "strEvent": "Seattle Storm vs Las Vegas Aces",
- "strHomeTeam": "Seattle Storm",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-09-18",
- "strTime": "02:00",
- "strTimestamp": "2026-09-18T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Climate Pledge Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857182",
- "strEvent": "Las Vegas Aces vs Toronto Tempo",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Toronto Tempo",
- "dateEvent": "2026-08-29",
- "strTime": "02:00",
- "strTimestamp": "2026-08-29T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857170",
- "strEvent": "Toronto Tempo vs Las Vegas Aces",
- "strHomeTeam": "Toronto Tempo",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-08-23",
- "strTime": "23:00",
- "strTimestamp": "2026-08-23T23:00Z",
- "strLeague": "WNBA",
- "strVenue": "Rogers Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857159",
- "strEvent": "Las Vegas Aces vs Connecticut Sun",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Connecticut Sun",
- "dateEvent": "2026-08-21",
- "strTime": "02:00",
- "strTimestamp": "2026-08-21T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857155",
- "strEvent": "Las Vegas Aces vs Atlanta Dream",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Atlanta Dream",
- "dateEvent": "2026-08-19",
- "strTime": "02:00",
- "strTimestamp": "2026-08-19T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857147",
- "strEvent": "Las Vegas Aces vs Minnesota Lynx",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Minnesota Lynx",
- "dateEvent": "2026-08-16",
- "strTime": "00:00",
- "strTimestamp": "2026-08-16T00:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857142",
- "strEvent": "Las Vegas Aces vs Washington Mystics",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Washington Mystics",
- "dateEvent": "2026-08-14",
- "strTime": "02:00",
- "strTimestamp": "2026-08-14T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857135",
- "strEvent": "Las Vegas Aces vs Washington Mystics",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Washington Mystics",
- "dateEvent": "2026-08-12",
- "strTime": "02:00",
- "strTimestamp": "2026-08-12T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857128",
- "strEvent": "New York Liberty vs Las Vegas Aces",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-08-09",
- "strTime": "16:30",
- "strTimestamp": "2026-08-09T16:30Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857125",
- "strEvent": "Minnesota Lynx vs Las Vegas Aces",
- "strHomeTeam": "Minnesota Lynx",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-08-08",
- "strTime": "17:00",
- "strTimestamp": "2026-08-08T17:00Z",
- "strLeague": "WNBA",
- "strVenue": "Target Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857119",
- "strEvent": "Indiana Fever vs Las Vegas Aces",
- "strHomeTeam": "Indiana Fever",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-08-06",
- "strTime": "23:00",
- "strTimestamp": "2026-08-06T23:00Z",
- "strLeague": "WNBA",
- "strVenue": "Gainbridge Fieldhouse",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857111",
- "strEvent": "Atlanta Dream vs Las Vegas Aces",
- "strHomeTeam": "Atlanta Dream",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-08-03",
- "strTime": "23:30",
- "strTimestamp": "2026-08-03T23:30Z",
- "strLeague": "WNBA",
- "strVenue": "Gateway Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857105",
- "strEvent": "Chicago Sky vs Las Vegas Aces",
- "strHomeTeam": "Chicago Sky",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-08-01",
- "strTime": "17:00",
- "strTimestamp": "2026-08-01T17:00Z",
- "strLeague": "WNBA",
- "strVenue": "Wintrust Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857101",
- "strEvent": "Las Vegas Aces vs New York Liberty",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-07-31",
- "strTime": "02:00",
- "strTimestamp": "2026-07-31T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857095",
- "strEvent": "Las Vegas Aces vs Portland Fire",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Portland Fire",
- "dateEvent": "2026-07-29",
- "strTime": "02:00",
- "strTimestamp": "2026-07-29T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857089",
- "strEvent": "Washington Mystics vs Las Vegas Aces",
- "strHomeTeam": "Washington Mystics",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-07-22",
- "strTime": "23:30",
- "strTimestamp": "2026-07-22T23:30Z",
- "strLeague": "WNBA",
- "strVenue": "CareFirst Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857083",
- "strEvent": "Toronto Tempo vs Las Vegas Aces",
- "strHomeTeam": "Toronto Tempo",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-07-21",
- "strTime": "00:00",
- "strTimestamp": "2026-07-21T00:00Z",
- "strLeague": "WNBA",
- "strVenue": "Coca-Cola Coliseum",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857063",
- "strEvent": "Las Vegas Aces vs Indiana Fever",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Indiana Fever",
- "dateEvent": "2026-07-13",
- "strTime": "01:00",
- "strTimestamp": "2026-07-13T01:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857058",
- "strEvent": "Las Vegas Aces vs Phoenix Mercury",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Phoenix Mercury",
- "dateEvent": "2026-07-11",
- "strTime": "22:00",
- "strTimestamp": "2026-07-11T22:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857053",
- "strEvent": "Portland Fire vs Las Vegas Aces",
- "strHomeTeam": "Portland Fire",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-07-10",
- "strTime": "02:00",
- "strTimestamp": "2026-07-10T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Moda Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857042",
- "strEvent": "Las Vegas Aces vs Indiana Fever",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Indiana Fever",
- "dateEvent": "2026-07-05",
- "strTime": "23:00",
- "strTimestamp": "2026-07-05T23:00Z",
- "strLeague": "WNBA",
- "strVenue": "T-Mobile Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857038",
- "strEvent": "Las Vegas Aces vs Chicago Sky",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Chicago Sky",
- "dateEvent": "2026-07-04",
- "strTime": "02:00",
- "strTimestamp": "2026-07-04T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "T-Mobile Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857032",
- "strEvent": "Chicago Sky vs Las Vegas Aces",
- "strHomeTeam": "Chicago Sky",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-06-28",
- "strTime": "20:00",
- "strTimestamp": "2026-06-28T20:00Z",
- "strLeague": "WNBA",
- "strVenue": "United Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857022",
- "strEvent": "Las Vegas Aces vs Dallas Wings",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Dallas Wings",
- "dateEvent": "2026-06-26",
- "strTime": "02:00",
- "strTimestamp": "2026-06-26T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857016",
- "strEvent": "Las Vegas Aces vs New York Liberty",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-06-24",
- "strTime": "02:00",
- "strTimestamp": "2026-06-24T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857009",
- "strEvent": "Las Vegas Aces vs Golden State Valkyries",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Golden State Valkyries",
- "dateEvent": "2026-06-21",
- "strTime": "20:00",
- "strTimestamp": "2026-06-21T20:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857000",
- "strEvent": "Phoenix Mercury vs Las Vegas Aces",
- "strHomeTeam": "Phoenix Mercury",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-06-18",
- "strTime": "02:00",
- "strTimestamp": "2026-06-18T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Mortgage Matchup Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856992",
- "strEvent": "Dallas Wings vs Las Vegas Aces",
- "strHomeTeam": "Dallas Wings",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-06-16",
- "strTime": "00:00",
- "strTimestamp": "2026-06-16T00:00Z",
- "strLeague": "WNBA",
- "strVenue": "College Park Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856987",
- "strEvent": "Las Vegas Aces vs Minnesota Lynx",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Minnesota Lynx",
- "dateEvent": "2026-06-14",
- "strTime": "00:00",
- "strTimestamp": "2026-06-14T00:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856983",
- "strEvent": "Portland Fire vs Las Vegas Aces",
- "strHomeTeam": "Portland Fire",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-06-12",
- "strTime": "02:00",
- "strTimestamp": "2026-06-12T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Moda Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856974",
- "strEvent": "Las Vegas Aces vs Seattle Storm",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Seattle Storm",
- "dateEvent": "2026-06-09",
- "strTime": "02:00",
- "strTimestamp": "2026-06-09T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856967",
- "strEvent": "Las Vegas Aces vs Golden State Valkyries",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Golden State Valkyries",
- "dateEvent": "2026-06-06",
- "strTime": "19:00",
- "strTimestamp": "2026-06-06T19:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856958",
- "strEvent": "Los Angeles Sparks vs Las Vegas Aces",
- "strHomeTeam": "Los Angeles Sparks",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-06-03",
- "strTime": "02:00",
- "strTimestamp": "2026-06-03T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "crypto.com Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856952",
- "strEvent": "Golden State Valkyries vs Las Vegas Aces",
- "strHomeTeam": "Golden State Valkyries",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-05-31",
- "strTime": "19:30",
- "strTimestamp": "2026-05-31T19:30Z",
- "strLeague": "WNBA",
- "strVenue": "Chase Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856943",
- "strEvent": "Dallas Wings vs Las Vegas Aces",
- "strHomeTeam": "Dallas Wings",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-05-29",
- "strTime": "00:00",
- "strTimestamp": "2026-05-29T00:00Z",
- "strLeague": "WNBA",
- "strVenue": "College Park Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856932",
- "strEvent": "Las Vegas Aces vs Los Angeles Sparks",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Los Angeles Sparks",
- "dateEvent": "2026-05-24",
- "strTime": "00:00",
- "strTimestamp": "2026-05-24T00:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856915",
- "strEvent": "Atlanta Dream vs Las Vegas Aces",
- "strHomeTeam": "Atlanta Dream",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-05-17",
- "strTime": "17:30",
- "strTimestamp": "2026-05-17T17:30Z",
- "strLeague": "WNBA",
- "strVenue": "State Farm Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856910",
- "strEvent": "Connecticut Sun vs Las Vegas Aces",
- "strHomeTeam": "Connecticut Sun",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-05-15",
- "strTime": "23:30",
- "strTimestamp": "2026-05-15T23:30Z",
- "strLeague": "WNBA",
- "strVenue": "Mohegan Sun Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856905",
- "strEvent": "Connecticut Sun vs Las Vegas Aces",
- "strHomeTeam": "Connecticut Sun",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-05-14",
- "strTime": "00:00",
- "strTimestamp": "2026-05-14T00:00Z",
- "strLeague": "WNBA",
- "strVenue": "Mohegan Sun Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856898",
- "strEvent": "Los Angeles Sparks vs Las Vegas Aces",
- "strHomeTeam": "Los Angeles Sparks",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-05-10",
- "strTime": "22:00",
- "strTimestamp": "2026-05-10T22:00Z",
- "strLeague": "WNBA",
- "strVenue": "crypto.com Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856894",
- "strEvent": "Las Vegas Aces vs Phoenix Mercury",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "Phoenix Mercury",
- "dateEvent": "2026-05-09",
- "strTime": "19:30",
- "strTimestamp": "2026-05-09T19:30Z",
- "strLeague": "WNBA",
- "strVenue": "T-Mobile Arena",
- "strStatus": "NS",
- "source": "wehoop"
- }
- ]
-}
\ No newline at end of file
diff --git a/lib/data/sports/supplemental/136438.json b/lib/data/sports/supplemental/136438.json
deleted file mode 100644
index 9de44e5..0000000
--- a/lib/data/sports/supplemental/136438.json
+++ /dev/null
@@ -1,579 +0,0 @@
-{
- "teamId": "136438",
- "teamName": "New York Liberty",
- "updatedAt": "2026-06-11T17:08:13.187Z",
- "events": [
- {
- "idEvent": "wnba-sdv-401857213",
- "strEvent": "New York Liberty vs Atlanta Dream",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Atlanta Dream",
- "dateEvent": "2026-09-24",
- "strTime": "00:00",
- "strTimestamp": "2026-09-24T00:00Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857206",
- "strEvent": "New York Liberty vs Atlanta Dream",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Atlanta Dream",
- "dateEvent": "2026-09-22",
- "strTime": "00:00",
- "strTimestamp": "2026-09-22T00:00Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857202",
- "strEvent": "Toronto Tempo vs New York Liberty",
- "strHomeTeam": "Toronto Tempo",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-09-20",
- "strTime": "19:00",
- "strTimestamp": "2026-09-20T19:00Z",
- "strLeague": "WNBA",
- "strVenue": "Coca-Cola Coliseum",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857196",
- "strEvent": "Minnesota Lynx vs New York Liberty",
- "strHomeTeam": "Minnesota Lynx",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-09-18",
- "strTime": "23:30",
- "strTimestamp": "2026-09-18T23:30Z",
- "strLeague": "WNBA",
- "strVenue": "Target Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857184",
- "strEvent": "New York Liberty vs Chicago Sky",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Chicago Sky",
- "dateEvent": "2026-08-29",
- "strTime": "17:00",
- "strTimestamp": "2026-08-29T17:00Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857178",
- "strEvent": "New York Liberty vs Golden State Valkyries",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Golden State Valkyries",
- "dateEvent": "2026-08-28",
- "strTime": "00:00",
- "strTimestamp": "2026-08-28T00:00Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857164",
- "strEvent": "New York Liberty vs Indiana Fever",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Indiana Fever",
- "dateEvent": "2026-08-22",
- "strTime": "23:00",
- "strTimestamp": "2026-08-22T23:00Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857154",
- "strEvent": "Chicago Sky vs New York Liberty",
- "strHomeTeam": "Chicago Sky",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-08-19",
- "strTime": "01:00",
- "strTimestamp": "2026-08-19T01:00Z",
- "strLeague": "WNBA",
- "strVenue": "Wintrust Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857145",
- "strEvent": "Connecticut Sun vs New York Liberty",
- "strHomeTeam": "Connecticut Sun",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-08-15",
- "strTime": "17:00",
- "strTimestamp": "2026-08-15T17:00Z",
- "strLeague": "WNBA",
- "strVenue": "Mohegan Sun Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857141",
- "strEvent": "New York Liberty vs Los Angeles Sparks",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Los Angeles Sparks",
- "dateEvent": "2026-08-14",
- "strTime": "00:00",
- "strTimestamp": "2026-08-14T00:00Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857134",
- "strEvent": "Indiana Fever vs New York Liberty",
- "strHomeTeam": "Indiana Fever",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-08-11",
- "strTime": "23:30",
- "strTimestamp": "2026-08-11T23:30Z",
- "strLeague": "WNBA",
- "strVenue": "Gainbridge Fieldhouse",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857128",
- "strEvent": "New York Liberty vs Las Vegas Aces",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Las Vegas Aces",
- "dateEvent": "2026-08-09",
- "strTime": "16:30",
- "strTimestamp": "2026-08-09T16:30Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857116",
- "strEvent": "New York Liberty vs Seattle Storm",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Seattle Storm",
- "dateEvent": "2026-08-05",
- "strTime": "23:00",
- "strTimestamp": "2026-08-05T23:00Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857112",
- "strEvent": "New York Liberty vs Seattle Storm",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Seattle Storm",
- "dateEvent": "2026-08-03",
- "strTime": "23:00",
- "strTimestamp": "2026-08-03T23:00Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857106",
- "strEvent": "Phoenix Mercury vs New York Liberty",
- "strHomeTeam": "Phoenix Mercury",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-08-01",
- "strTime": "19:00",
- "strTimestamp": "2026-08-01T19:00Z",
- "strLeague": "WNBA",
- "strVenue": "Mortgage Matchup Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857101",
- "strEvent": "Las Vegas Aces vs New York Liberty",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-07-31",
- "strTime": "02:00",
- "strTimestamp": "2026-07-31T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857096",
- "strEvent": "Los Angeles Sparks vs New York Liberty",
- "strHomeTeam": "Los Angeles Sparks",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-07-29",
- "strTime": "02:00",
- "strTimestamp": "2026-07-29T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "crypto.com Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857088",
- "strEvent": "New York Liberty vs Chicago Sky",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Chicago Sky",
- "dateEvent": "2026-07-22",
- "strTime": "23:00",
- "strTimestamp": "2026-07-22T23:00Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857077",
- "strEvent": "Indiana Fever vs New York Liberty",
- "strHomeTeam": "Indiana Fever",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-07-19",
- "strTime": "00:00",
- "strTimestamp": "2026-07-19T00:00Z",
- "strLeague": "WNBA",
- "strVenue": "Gainbridge Fieldhouse",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857072",
- "strEvent": "Dallas Wings vs New York Liberty",
- "strHomeTeam": "Dallas Wings",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-07-17",
- "strTime": "01:00",
- "strTimestamp": "2026-07-17T01:00Z",
- "strLeague": "WNBA",
- "strVenue": "College Park Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857060",
- "strEvent": "Toronto Tempo vs New York Liberty",
- "strHomeTeam": "Toronto Tempo",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-07-12",
- "strTime": "19:00",
- "strTimestamp": "2026-07-12T19:00Z",
- "strLeague": "WNBA",
- "strVenue": "Bell Centre",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857057",
- "strEvent": "Minnesota Lynx vs New York Liberty",
- "strHomeTeam": "Minnesota Lynx",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-07-11",
- "strTime": "17:00",
- "strTimestamp": "2026-07-11T17:00Z",
- "strLeague": "WNBA",
- "strVenue": "Target Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857046",
- "strEvent": "New York Liberty vs Dallas Wings",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Dallas Wings",
- "dateEvent": "2026-07-08",
- "strTime": "00:00",
- "strTimestamp": "2026-07-08T00:00Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857037",
- "strEvent": "New York Liberty vs Minnesota Lynx",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Minnesota Lynx",
- "dateEvent": "2026-07-03",
- "strTime": "23:30",
- "strTimestamp": "2026-07-03T23:30Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857033",
- "strEvent": "Golden State Valkyries vs New York Liberty",
- "strHomeTeam": "Golden State Valkyries",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-06-28",
- "strTime": "23:00",
- "strTimestamp": "2026-06-28T23:00Z",
- "strLeague": "WNBA",
- "strVenue": "Chase Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857023",
- "strEvent": "Seattle Storm vs New York Liberty",
- "strHomeTeam": "Seattle Storm",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-06-26",
- "strTime": "02:00",
- "strTimestamp": "2026-06-26T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Climate Pledge Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857016",
- "strEvent": "Las Vegas Aces vs New York Liberty",
- "strHomeTeam": "Las Vegas Aces",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-06-24",
- "strTime": "02:00",
- "strTimestamp": "2026-06-24T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Michelob ULTRA Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857011",
- "strEvent": "Los Angeles Sparks vs New York Liberty",
- "strHomeTeam": "Los Angeles Sparks",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-06-22",
- "strTime": "00:00",
- "strTimestamp": "2026-06-22T00:00Z",
- "strLeague": "WNBA",
- "strVenue": "crypto.com Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401857004",
- "strEvent": "New York Liberty vs Washington Mystics",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Washington Mystics",
- "dateEvent": "2026-06-19",
- "strTime": "23:30",
- "strTimestamp": "2026-06-19T23:30Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856997",
- "strEvent": "Chicago Sky vs New York Liberty",
- "strHomeTeam": "Chicago Sky",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-06-18",
- "strTime": "00:00",
- "strTimestamp": "2026-06-18T00:00Z",
- "strLeague": "WNBA",
- "strVenue": "Wintrust Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856990",
- "strEvent": "New York Liberty vs Washington Mystics",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Washington Mystics",
- "dateEvent": "2026-06-14",
- "strTime": "19:00",
- "strTimestamp": "2026-06-14T19:00Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856981",
- "strEvent": "Atlanta Dream vs New York Liberty",
- "strHomeTeam": "Atlanta Dream",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-06-11",
- "strTime": "23:30",
- "strTimestamp": "2026-06-11T23:30Z",
- "strLeague": "WNBA",
- "strVenue": "Gateway Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856972",
- "strEvent": "Connecticut Sun vs New York Liberty",
- "strHomeTeam": "Connecticut Sun",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-06-08",
- "strTime": "23:00",
- "strTimestamp": "2026-06-08T23:00Z",
- "strLeague": "WNBA",
- "strVenue": "Mohegan Sun Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856969",
- "strEvent": "New York Liberty vs Indiana Fever",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Indiana Fever",
- "dateEvent": "2026-06-07",
- "strTime": "00:00",
- "strTimestamp": "2026-06-07T00:00Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856959",
- "strEvent": "New York Liberty vs Toronto Tempo",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Toronto Tempo",
- "dateEvent": "2026-06-03",
- "strTime": "23:30",
- "strTimestamp": "2026-06-03T23:30Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856945",
- "strEvent": "New York Liberty vs Phoenix Mercury",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Phoenix Mercury",
- "dateEvent": "2026-05-29",
- "strTime": "23:30",
- "strTimestamp": "2026-05-29T23:30Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856938",
- "strEvent": "New York Liberty vs Phoenix Mercury",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Phoenix Mercury",
- "dateEvent": "2026-05-27",
- "strTime": "23:00",
- "strTimestamp": "2026-05-27T23:00Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856936",
- "strEvent": "New York Liberty vs Portland Fire",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Portland Fire",
- "dateEvent": "2026-05-26",
- "strTime": "00:00",
- "strTimestamp": "2026-05-26T00:00Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856934",
- "strEvent": "New York Liberty vs Dallas Wings",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Dallas Wings",
- "dateEvent": "2026-05-24",
- "strTime": "19:30",
- "strTimestamp": "2026-05-24T19:30Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856924",
- "strEvent": "New York Liberty vs Golden State Valkyries",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Golden State Valkyries",
- "dateEvent": "2026-05-22",
- "strTime": "00:00",
- "strTimestamp": "2026-05-22T00:00Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856909",
- "strEvent": "Portland Fire vs New York Liberty",
- "strHomeTeam": "Portland Fire",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-05-15",
- "strTime": "02:00",
- "strTimestamp": "2026-05-15T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Moda Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856903",
- "strEvent": "Portland Fire vs New York Liberty",
- "strHomeTeam": "Portland Fire",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-05-13",
- "strTime": "02:00",
- "strTimestamp": "2026-05-13T02:00Z",
- "strLeague": "WNBA",
- "strVenue": "Moda Center",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856897",
- "strEvent": "Washington Mystics vs New York Liberty",
- "strHomeTeam": "Washington Mystics",
- "strAwayTeam": "New York Liberty",
- "dateEvent": "2026-05-10",
- "strTime": "19:00",
- "strTimestamp": "2026-05-10T19:00Z",
- "strLeague": "WNBA",
- "strVenue": "CareFirst Arena",
- "strStatus": "NS",
- "source": "wehoop"
- },
- {
- "idEvent": "wnba-sdv-401856890",
- "strEvent": "New York Liberty vs Connecticut Sun",
- "strHomeTeam": "New York Liberty",
- "strAwayTeam": "Connecticut Sun",
- "dateEvent": "2026-05-08",
- "strTime": "23:30",
- "strTimestamp": "2026-05-08T23:30Z",
- "strLeague": "WNBA",
- "strVenue": "Barclays Center",
- "strStatus": "NS",
- "source": "wehoop"
- }
- ]
-}
\ No newline at end of file
diff --git a/lib/sports.js b/lib/sports.js
index d39230b..1f8df82 100644
--- a/lib/sports.js
+++ b/lib/sports.js
@@ -223,7 +223,6 @@ export async function fetchScheduleFromESPN(leagueSlug, teamSlug, { env = proces
}
}
-
async function loadCachedLeagueEvents(leagueId) {
try {
const filePath = path.join(DATA_DIR, `${leagueId}.json`);
diff --git a/scripts/fetch-sports.js b/scripts/fetch-sports.js
index 1c85adb..ae6cdd9 100644
--- a/scripts/fetch-sports.js
+++ b/scripts/fetch-sports.js
@@ -201,7 +201,6 @@ async function fetchLeagueSupplementalCSV(league, teams) {
}
}
- // Handle last row if no trailing newline
if (currentField !== '' || currentRow.length > 0) {
currentRow.push(currentField);
rows.push(currentRow);
@@ -216,7 +215,6 @@ async function fetchLeagueSupplementalCSV(league, teams) {
if (indices.date === -1 || indices.home === -1 || indices.away === -1) {
throw new Error(`Malformed ${league.name} CSV header (missing required fields)`);
-
}
for (let i = 1; i < rows.length; i++) {
@@ -238,13 +236,26 @@ async function fetchLeagueSupplementalCSV(league, teams) {
[dateEvent, strTime] = dateRaw.split('T');
strTime = strTime.replace('Z', '');
strTimestamp = dateRaw;
- } else if (timeRaw) {
- strTime = timeRaw;
+ } else {
+ if (timeRaw) strTime = timeRaw;
+
+ // Validate date format YYYY-MM-DD
+ if (!/^\d{4}-\d{2}-\d{2}$/.test(dateEvent)) {
+ const parsed = new Date(dateRaw);
+ if (!Number.isNaN(parsed.getTime())) {
+ dateEvent = parsed.toISOString().split('T')[0];
+ } else {
+ console.warn(` Invalid date format for ${league.name}: "${dateRaw}"`);
+ }
+ }
}
if (strTime.length === 5) strTime += ':00'; // HH:mm -> HH:mm:ss
+
if (!strTimestamp) {
- strTimestamp = `${dateEvent}T${strTime}Z`;
+ if (/^\d{4}-\d{2}-\d{2}$/.test(dateEvent)) {
+ strTimestamp = `${dateEvent}T${strTime}Z`;
+ }
} else if (!strTimestamp.endsWith('Z') && !/[-+]\d{2}:?\d{2}$/.test(strTimestamp)) {
strTimestamp += 'Z';
}
@@ -365,7 +376,6 @@ function getESPNTeamSlug(team) {
return team.strTeamShort?.toLowerCase() || team.strTeam?.toLowerCase().replace(/\s+/g, '-');
}
-
async function isSupplementalStale(teamId) {
try {
const filePath = path.join(SUPPLEMENTAL_DATA_DIR, `${teamId}.json`);
@@ -454,21 +464,23 @@ async function main() {
}
}
- // 2c. Save Merged Results
+ // 2c. Save Merged Results (Always write to mark as fresh)
+ const filePath = path.join(SUPPLEMENTAL_DATA_DIR, `${team.idTeam}.json`);
+ const normalizedEvents = allScrapedGames.map(g => normalizeScrapedEvent(g, team.strTeam));
+
+ await fs.writeFile(filePath, JSON.stringify({
+ teamId: team.idTeam,
+ teamName: team.strTeam,
+ updatedAt: new Date().toISOString(),
+ events: normalizedEvents
+ }, null, 2));
+
if (allScrapedGames.length > 0) {
- const filePath = path.join(SUPPLEMENTAL_DATA_DIR, `${team.idTeam}.json`);
- const normalizedEvents = allScrapedGames.map(g => normalizeScrapedEvent(g, team.strTeam));
-
- await fs.writeFile(filePath, JSON.stringify({
- teamId: team.idTeam,
- teamName: team.strTeam,
- updatedAt: new Date().toISOString(),
- events: normalizedEvents
- }, null, 2));
console.log(` Saved ${normalizedEvents.length} total supplemental events for ${team.strTeam}`);
-
- // Significant throttle for Firecrawl
+ // Significant throttle for Firecrawl only if we actually did work
await sleep(8000);
+ } else {
+ console.log(` No supplemental games found for ${team.strTeam}.`);
}
}
}
From 33ab07bd525a33508bce527f43d54cc7137612d5 Mon Sep 17 00:00:00 2001
From: DisabledAbel <196466003+DisabledAbel@users.noreply.github.com>
Date: Fri, 12 Jun 2026 19:17:16 +0000
Subject: [PATCH 3/3] feat: add official website and ESPN scraping for sports
schedules
- Implemented structured extraction using Firecrawl API to scrape official team websites and ESPN.
- Integrated supplemental bulk data from SportsDataverse/NFLverse for WNBA, NBA, NFL, and NHL.
- Updated background workflow to run every 6 hours and persist team-specific supplemental data.
- Enhanced merging and deduplication logic in `lib/sports.js` to handle multi-source schedules.
- Added deterministic unit tests for event merging.