GETGAME LIST
/api/v1/gamesReturns Euro Lucky 4, EuroMillions, EuroDreams and France Lotto.
One JSON interface for all four draws, available to desktop, mobile and third-party servers.
/api/v1/gamesReturns Euro Lucky 4, EuroMillions, EuroDreams and France Lotto.
/api/v1/games/mouse/stateReturns European server time, current issue, countdown and animation progress.
/api/v1/draws/{game_id}/latestSupported game_id values: mouse, euromillions, eurodreams and frlotto.
/api/v1/draws/{game_id}/history?limit=50&offset=0Returns paginated records. Euro Lucky 4 also includes big/small and odd/even attributes.
/api/v1/stream/mousePushes the Euro Lucky 4 server state every 0.5 seconds.
/api/v1/embed/euro-lucky-4Returns the iframe URL, live state, soundtrack, WebSocket endpoint and MP4/WebM URLs for all four results.
/embed/euro-lucky-4Responsive cross-site iframe player with optional synchronized draw music. The full Draw Center remains protected from embedding.
/api/openapi.jsonImport directly into any development tool that supports OpenAPI 3.
fetch('https://matchshort.com/api/v1/draws/mouse/history?limit=50&offset=0')
.then(response => response.json())
.then(data => console.log(data.draws));<iframe src="https://matchshort.com/embed/euro-lucky-4" title="Euro Lucky 4 Live Draw" width="800" height="520" allow="autoplay; fullscreen" loading="lazy" style="border:0;max-width:100%;" ></iframe>
fetch('https://matchshort.com/api/v1/embed/euro-lucky-4')
.then(response => response.json())
.then(data => console.log(data.state, data.videos, data.music_url));