Ask Football
A queryable football database you can ask questions of in plain English. Type something like “Mbappé goals at the 2022 World Cup” and an LLM translates it to SQL and runs it - covering the top 5 European leagues since 2010, every World Cup since 1930, and Euro, Copa América, and European club competitions.
What’s interesting Seven different open data sources, each with its own naming quirks, reconciled into one MySQL schema. Generated SQL is validated (single SELECT only, keyword denylist, forced read-only transaction) before it ever runs, and successful queries are cached so a repeat question never re-hits the LLM - a template-substitution layer even reuses a cached query for a new one that only swaps the team or season.
- FastAPI
- MySQL
- Gemini
- Python
- GitHub Actions