© Copyright 2018 – 2024 FIRECRACKER SPORTS. All Rights Reserved.​ TERMS OF USE  |  PRIVACY POLICY

Brooklyn Bonnies – 2026 Scout Day

06/12/2026
Brooklyn,  New York

INFORMATION

  • Age groups:
    3 Divisions Pitcher Only Positional Player Only Pitcher/Positional Player Combined
  • Date :
    Friday, June 12th
  • Price:
    Pitcher Only - $150Positional Player Only - $200Pitcher/Positional Player Combined - $225

The Bonnies Baseball Club will be hosting a Team Scout Day on June 12th, 2026 from 4:00pm - 8:00pm at the American Legion Field in Brooklyn, NY. This special event will be powered by Firecracker Sports and ran in conjunction by numerous local college coaches who will be in attendance to evaluate and instruct the players.

This scout day gives exclusive access to players of the Bonnies Baseball program, the opportunity to showcase for numerous college scouts who will be in attendance. All players on the 14U - 18U teams will be able to attend, to gain invaluable experience early in not only showcasing their talents for the scouts through a pro-style workout, have an instructional period of skill building with the coaches present but also the opportunity to gather advanced metrics through Trackman and a player evaluation from a college coach.

All players receive:

  • Performance T-Shirt and a player profile picture.
  • Online recognition on our scouting database with full event metrics and college coach evaluations to be distributed to our college coaching database across the country.
  • Dynamic warmup, POP times for catchers, throwing velocities with advanced metrics through Trackman, Swift/30 yard plus 60 yd dash times, batting practice and bullpens for pitchers and catchers.
  • Individual Skills and Drills session for 20-30 minutes with the college and pro coaches present.
  • Players and parents also take part in a small group recruiting seminar during the event.
  • This event and its players will be promoted on Firecracker Sports digital media platforms and to our 45K+ followers (this includes hundreds of college and pro scouts) during the event.
  • Players will be able to increase their player rankings and leaderboards for metrics throughout the event before their spring and summer season.
  • Players will also have the opportunity to gain exclusive early invites to the prestigious showcase of the summer, Fire55 and Jr Fire55 in August at Dunkin Park; home of the Hartford Yard Goats and the top 110 players of the 2026 season!
  • To find out more about this event, you can contact operations@firecrackersports.com.
  • To find out more about the Bonnies Baseball or to request an invite to this event if you are not part of the Bluefish Baseball you can contact Jerry Katzke at jerry.katzke@verizon.net

Registration

  • DIVISION:
    • Pitcher Only
    • Positional Player Only
    • Pitcher/Positional Player Combined
    • OPEN
    0 Players Registered
    COST: $150 - $225

College Coaches Attending

Teams

Locations

American Legion Field

10200 Seaview Avenue

Brooklyn new york , United States

Get Directions
Fields
  • Field #1
    • Grass
    • Permanent Bathrooms

schedule

HOTELS

Standings

#TeamWLTRARSRDW%

Brackets

TOP PERFORMERS

RULES

There is no rules.

WEATHER

×

Request for More Info

`);printWindow.document.close(); }); }); function extractTeamName(teamDetails) {if (!teamDetails) return null; // ❌ No more "TBD"// If already object if (typeof teamDetails === "object") { return teamDetails.team_name ?? null; }// Extract from PHP serialized string let match = teamDetails.match(/team_name";s:\d+:"([^"]+)"/);return match ? match[1] : null; // ❌ No fallback to TBD } $(document).on("change", ".series-game-dropdown", function () {let dropdown = $(this); let selectedGameName = dropdown.val(); if (!selectedGameName) return;let baseGame = dropdown.data("base-game");let divisionId = $("#division_select").val(); let eventId = $("#event_id").val();let matchContainer = dropdown.closest(".match-container"); let matchBox = matchContainer.find(".match");matchContainer.data("series", {}); let series = matchContainer.data("series");$.ajax({ url: gpe.ajax_url, method: "POST", dataType: "json", data: { action: "gpe_ajax", type: "get_series_game_single", event_id: eventId, division_id: divisionId, base_game: baseGame, game_index: selectedGameName },success: function (response) {if (!response.success) return;let game = response.data;let team1 = game.team_name1; let team2 = game.team_name2;/* existing condition */ if (!team1 || !team2 || team1.trim() === "" || team2.trim() === "") { return; }let score1 = parseInt(game.team1_score) || 0; let score2 = parseInt(game.team2_score) || 0;/* update team names (existing logic) */ matchBox.find(".team-name").eq(0).text(team1); matchBox.find(".team-name").eq(1).text(team2);/* ⭐ ADD THIS PART — USE SERIES WINS FROM AJAX */ if (typeof game.team1_series_wins !== "undefined") { matchBox.find(".score").eq(0).text(game.team1_series_wins); }if (typeof game.team2_series_wins !== "undefined") { matchBox.find(".score").eq(1).text(game.team2_series_wins); }let totalWin1 = 0; let totalWin2 = 0;Object.values(series).forEach(g => { totalWin1 += g.t1; totalWin2 += g.t2; });matchBox.find(".score").eq(0).text(game.team1_series_wins); matchBox.find(".score").eq(1).text(game.team2_series_wins);let gameIndex = selectedGameName.slice(-1).toLowerCase();series[gameIndex] = { team1: team1, team2: team2, s1: score1, s2: score2 };let container = dropdown.closest(".series-dropdown-bottom");container.find(".all-series-scores").remove();let html = "";Object.keys(series).sort().forEach(function (k) {let g = series[k];let num = 1; if (k === "b") num = 2; if (k === "c") num = 3;let row = "";if (g.s1 >= g.s2) {row = `
G${num} ${g.team1} ${g.s1}–${g.s2} ${g.team2}
`;} else {row = `
G${num} ${g.team2} ${g.s2}–${g.s1} ${g.team1}
`;}html += row; });container.append(`
${html}
`);} });});/* trigger once per dropdown after load */ $(document).ready(function(){setTimeout(function(){$(".series-game-dropdown").each(function(){ $(this).trigger("change"); });},300);});