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

2026 College Showcase Softball Camp – Boston

07/23/2026
Boston,  Massachusetts

INFORMATION

  • Age groups:
    3 Divisions Pitcher Only Positional Player Only Pitcher/Positional Player Combined
  • Date :
    Thursday, July 23rd
  • Price:
    Pitcher Only - $199Positional Player Only - $225Pitcher/Positional Player Combined - $250

Firecracker Softball will be hosting a College Showcase Camp at Emmanuel College to jump start your recruiting process for the 2026 Fall season from 9AM-1PM on July 23rd. This camp is available to all prospective softball players.

All players will receive a pro style workout, a showcase performance t-shirt and a statistical data driven evaluation performed by college and professional coaches. These evaluations will be made available online and distributed to our college scouting and contact database. We hire college and pro coaches to be on the field instructing but also providing evaluations on each player so we guarantee 10+ coaches at our events. All subsequent stories and highlights written about a player will be linked to the player’s social media profile along with the Firecracker Softball’s website and social media platforms, ultimately creating a one-stop shop for a college recruiter.

Who: 2027-2029 Graduates. All JUCO, 2026 and 2030 Graduates please inquire first!

What to Wear: Black or white softball pants, your travel team hat and turfs. (A number on their t-shirt will identify players). Catchers are to provide their own gear.

Reporting Time: Please report at 8:45AM to check in at park entrance for Emmanuel College in Boston, MA (Check venue tab for GPS mapping)

Cost to Player:  All participants have a registration fee based on their position. $199.00 for pitchers only, $225.00 for positional players only and $250.00 for combination players (pitcher and positional player) evaluations. We have sold out most of our showcase camps over our 19 years of runnings events with over 5000+ players attending.

Is there a list of schools committed for this event?

That’s a great question! Yes please check out the “College Coaches” section under the registration selection.

What is your refund/weather cancellation policy?

Unfortunately weather or “Act of God” issues can be a factor in running quality softball events. Please see our policies below.

  • Snow/Bad Weather: Alternative sites are always an option. If not, full credit towards a future 2026 event.
  • Injury (with proper medical documentation): Full credit towards a future 2026 event.
  • No-show and/or no communication about absence = No Refund

Registration

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

College Coaches Attending

  1. Wentworth Institute of Technology
  2. Emmanuel College
  3. University of Massachusetts - Boston
  4. Suffolk University
  5. Simmons College
  6. Lasell University
  7. Springfield College
  8. Regis College
  9. Nichols College
  10. Brandeis University
  11. Framingham State University
  12. More to come once we hit certain thresholds of registrations!


 

Teams

Locations

Emmanuel College

400 Fenway Longwood Medical and Academic Area

Boston massachusetts , United States

Get Directions
Fields
  • Roberto Clemente Field
    • Turf
    • Permanent Bathrooms

schedule

HOTELS

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);});