Most Goals Scored In Bundesliga Season |best| Jun 2026

In the 2019-2020 season, Robert Lewandowski, the Polish striker for Bayern Munich, made history by scoring 41 goals in 34 appearances. This incredible achievement broke the previous record of 40 goals, set by Klaus Fischer in the 1979-1980 season.

def test_top_goals_filter(): response = client.get('/api/top-goal-scorers?min_goals=38') assert response.json[0]['goals'] >= 38 assert len(response.json) == 2 # Lewa 41, Müller 40

const chartData = labels: data.map(item => $item.player ($item.season) ), datasets: [ label: 'Goals', data: data.map(item => item.goals), backgroundColor: 'rgba(75, 192, 192, 0.6)', ] ; most goals scored in bundesliga season

@app.route('/api/top-goal-scorers', methods=['GET']) def get_top_scorers(): min_goals = request.args.get('min_goals', default=0, type=int) filtered = [s for s in bundesliga_goals if s['goals'] >= min_goals] filtered.sort(key=lambda x: x['goals'], reverse=True) return jsonify(filtered)

from flask import Flask, jsonify, request In the 2019-2020 season, Robert Lewandowski, the Polish

app = Flask()

Being the designated spot-kick taker provides a necessary cushion. In the 2019-2020 season

@app.route('/api/player/<name>', methods=['GET']) def get_player_seasons(name): return jsonify([s for s in bundesliga_goals if s['player'].lower() == name.lower()])