Sports Reference LLC plans to welcome six interns for summer 2026 as valued contributors to our Data, Engineering, and Marketing Departments. Sports Reference currently serves a still-growing 22m monthly users through our Reference sites and our SaaS business line at Sports-Reference.com/Stathead.
We currently serve 20 million (and growing) monthly users on our free, ad-supported Reference Sites (Baseball-Reference.com, Basketball-Reference.com, FBref.com, etc.) and Stathead, our SaaS offering that provides powerful search and filtering capabilities for deeper exploration of our vast databases. In 2023, we acquired Immaculate Grid, the viral baseball trivia game, and have since launched ad-supported grid games for basketball, football, hockey, and soccer.
Sports Reference is a relatively small company of only 42 employees. As such, interns’ work will be highly visible and have a definite and immediate impact. In addition to the projects interns will complete as members of their respective teams, interns will also participate in skill-building, career development, and networking opportunities designed to help interns achieve their career goals. Former Sports Reference interns have gone on to a wide array of meaningful careers, including a number of front office positions.
Please visit our jobs website at https://sports-reference-llc.breezy.hr/ to submit your resume for this position. In addition to a resume, you are required to submit your response to one general prompt and one additional prompt. More information on the prompts is included below.
We will start to review applications on January 12th and will begin the phone interview process the week of January 20th. After we begin to review applications, we typically do not consider additional applications.
We have provided a general outline of the hiring process around internships and frequently asked questions here: https://www.sports-reference.com/internships.html.
We democratize data, so our users can enjoy, understand, and share the sports they love.
We value:
To meet these expectations, we encourage team members to participate in company discussions and to share new ideas for features or potential solutions to problems.
We take great pride in the Sports Reference Summer Internship program. Each year, we incorporate feedback from the previous year to ensure we are providing a valuable and relevant experience. In 2026, we will provide:
Our program is designed with undergraduate students in mind, but we welcome all applicants. If you are interested in a Sports Reference Summer Internship and are more experienced, please take into consideration that we do not alter the pay or structure of our internship program to accommodate more advanced skill sets.
Sports Reference plans to welcome six interns for summer 2026:
Applicants may apply to only one position. Any applicants who apply to more than one of the positions will not be considered.
A qualified candidate's application will demonstrate:
Sports Reference 2026 Summer Interns will be paid at a rate of $23.50/hour.
Sports Reference 2026 Summer Interns are expected to work 40 hr/week for at least nine weeks between May 26th and September 4th. We offer some flexibility for start/end date and vacation time. We generally work a standard workday, though we offer the ability to flex hours to accommodate non-work obligations.
For ALL applicants, the first half of the prompt is to answer the following question:
Why do you want to intern with Sports Reference, and why should we hire you? (200 word max)
The second half of the prompt is related to the specific position for which you are applying. Applicants may apply to only one position. Find the prompt for the position in which you are most interested below.
On Baseball Reference, when a player misses a full season, we note the missed season and provide details when possible (e.g., list an injury, link to stats in a foreign league, note military service). This data provides greater context to players' careers. Please answer the following questions with respect to how you would add missed seasons for players to Baseball Reference:
person_id,year_id,team_id,comp_id,phase_id,stint_id,b_games,games_batting,games_defense,b_war,p_war
abad--001fau,2001,OAK,AL,reg,1,1,1,1,-0.03,NULL
abad--001fau,2003,BOS,AL,reg,1,9,9,8,-0.32,NULL
abad--001fau,2006,CIN,NL,reg,1,5,5,0,-0.02,NULL
abbott000and,2023,CIN,NL,reg,1,NULL,0,21,NULL,2.77
abbott000and,2024,CIN,NL,reg,1,NULL,0,25,NULL,3.32
abbott000and,2025,CIN,NL,reg,1,NULL,0,29,NULL,5.62
abbott000cor,2021,CHC,NL,reg,1,8,8,7,0.03,-0.41
abbott000cor,2022,WSN,NL,reg,1,NULL,0,16,NULL,-0.01
abbott000cor,2023,WSN,NL,reg,1,NULL,0,22,NULL,-0.46
abel--000mcl,2025,MIN,AL,reg,2,NULL,0,4,NULL,-0.46
abel--000mcl,2025,PHI,NL,reg,1,NULL,0,7,NULL,0.3
abreu-002wil,2023,BOS,AL,reg,1,28,28,25,0.67,NULL
abreu-002wil,2024,BOS,AL,reg,1,132,132,130,3.4,NULL
abreu-002wil,2025,BOS,AL,reg,1,115,115,104,3.21,NULL
abreu-002wil,2025,BOS,AL,WC,1,3,3,2,NULL,NULL
Please provide us with a coding solution to the following problem. You can use any high-level language that you’d like. This problem shouldn’t take more than an hour to complete. If you are finding yourself spending more time, your solution is probably too elaborate. Submit a link to the location where we can view the code (e.g., GitHub). The solution should contain a README.md that provides an explanation to your solution.
Given a json file that includes each team's Win-Loss records versus opponents, provide a code sample of how you would build a table displaying a matrix of head-to-head records, similar to this table. We are interested in your ability to work with data structures, loops and logic.
Provided json data (Note: The json data provided below is just to give a visualization of the data format. The actual values are unimportant for this exercise and shouldn't need to be included in the code.):
{
'BRO': {
'BSN': { 'W': 10, 'L': 12 },
'CHC': { 'W': 15, 'L': 7 },
'CIN': { 'W': 15, 'L': 7 },
'NYG': { 'W': 14, 'L': 8 },
'PHI': { 'W': 14, 'L': 8 },
'PIT': { 'W': 15, 'L': 7 },
'STL': { 'W': 11, 'L': 11 }
},
'BSN': {
'BRO': { 'W': 12, 'L': 10 },
'CHC': { 'W': 13, 'L': 9 },
'CIN': { 'W': 13, 'L': 9 },
'NYG': { 'W': 13, 'L': 9 },
'PHI': { 'W': 14, 'L': 8 },
'PIT': { 'W': 12, 'L': 10 },
'STL': { 'W': 9, 'L': 13 }
},
'CHC': {
'BRO': { 'W': 7, 'L': 15 },
'BSN': { 'W': 9, 'L': 13 },
'CIN': { 'W': 12, 'L': 10 },
'NYG': { 'W': 7, 'L': 15 },
'PHI': { 'W': 16, 'L': 6 },
'PIT': { 'W': 8, 'L': 14 },
'STL': { 'W': 10, 'L': 12 }
},
'CIN': {
'BRO': { 'W': 7, 'L': 15 },
'BSN': { 'W': 9, 'L': 13 },
'CHC': { 'W': 10, 'L': 12 },
'NYG': { 'W': 13, 'L': 9 },
'PHI': { 'W': 13, 'L': 9 },
'PIT': { 'W': 13, 'L': 9 },
'STL': { 'W': 8, 'L': 14 }
},
'NYG': {
'BRO': { 'W': 8, 'L': 14 },
'BSN': { 'W': 9, 'L': 13 },
'CHC': { 'W': 15, 'L': 7 },
'CIN': { 'W': 9, 'L': 13 },
'PHI': { 'W': 12, 'L': 10 },
'PIT': { 'W': 15, 'L': 7 },
'STL': { 'W': 13, 'L': 9 }
},
'PHI': {
'BRO': { 'W': 8, 'L': 14 },
'BSN': { 'W': 8, 'L': 14 },
'CHC': { 'W': 6, 'L': 16 },
'CIN': { 'W': 9, 'L': 13 },
'NYG': { 'W': 10, 'L': 12 },
'PIT': { 'W': 13, 'L': 9 },
'STL': { 'W': 8, 'L': 14 }
},
'PIT': {
'BRO': { 'W': 7, 'L': 15 },
'BSN': { 'W': 10, 'L': 12 },
'CHC': { 'W': 14, 'L': 8 },
'CIN': { 'W': 9, 'L': 13 },
'NYG': { 'W': 7, 'L': 15 },
'PHI': { 'W': 9, 'L': 13 },
'STL': { 'W': 6, 'L': 16 }
},
'STL': {
'BRO': { 'W': 11, 'L': 11 },
'BSN': { 'W': 13, 'L': 9 },
'CHC': { 'W': 12, 'L': 10 },
'CIN': { 'W': 14, 'L': 8 },
'NYG': { 'W': 9, 'L': 13 },
'PHI': { 'W': 14, 'L': 8 },
'PIT': { 'W': 16, 'L': 6 }
}
}
Results should look like:
Describe a project that you played a major role in that showcases your experience in marketing.
Please (in less than 250 words):
The project can be anything from coursework, a past internship, an extracurricular, a side hustle, or a part-time job. Please include any materials that can help us get a feel for your work on this project (i.e. final deliverables, graphics, slides, posts, emails, etc) using methods such as a portfolio website, a file drive link like Google Drive, or attach files to your application.
Sports Reference LLC does not discriminate in employment decisions on the basis of race, color, national origin, gender, sexual orientation, religion, military service eligibility, veteran status, marital status, disability, membership in any other protected classes, or on the basis of sports franchise preferences.