Discover/Binghamton Bearcats API
live

Binghamton Bearcats APIbinghamtonbearcats.com

Get the current Binghamton University men's lacrosse roster via API. Returns player names, jersey numbers, positions, class years, and hometowns in one request.

This API takes change requests — .
Endpoint health
verified 8h ago
get_roster
1/1 passing latest checkself-healing
Endpoints
1
Updated
9h ago

What is the Binghamton Bearcats API?

The Binghamton Bearcats men's lacrosse roster API exposes 6 data fields per player — name, jersey number, position, class year, hometown, and home state — through a single endpoint, get_roster. One call returns the full roster as a structured array alongside a total player count, with no pagination or filters required.

This call costs3 credits / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/c805c857-23de-44d1-9567-eb7d905fba0e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/c805c857-23de-44d1-9567-eb7d905fba0e/get_roster' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace binghamtonbearcats-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Binghamton Bearcats Men's Lacrosse roster — full roster fetch."""
from parse_apis.binghamtonbearcats_com_api import BinghamtonBearcats, ParseError

client = BinghamtonBearcats()

# Fetch the full men's lacrosse roster, capped at 50 players
try:
    for player in client.players.list(limit=50):
        print(f"#{player.jersey_number} {player.name} — {player.position} ({player.class_year}) from {player.hometown}, {player.home_state}")

except ParseError as e:
    print(f"Roster extraction failed: {e.code}")

# Drill into the first player for a quick summary
first = client.players.list(limit=1).first()
if first is not None:
    print(f"\nFirst listed player: {first.name}, Position: {first.position}")

print("exercised: players.list")
All endpoints · 1 totalmissing one? ·

Returns the current Binghamton University men's lacrosse roster. Each player includes full name, position, class year (Fr/So/Jr/Sr/Gr), jersey number, and hometown with home state. One request fetches the full roster (no pagination). The roster reflects the season displayed on the athletics site (currently 2026).

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer count of players on the roster",
    "players": "array of player objects with name, jersey_number, position, class_year, hometown, home_state"
  },
  "sample": {
    "data": {
      "total": 42,
      "players": [
        {
          "name": "Zacc McDonald",
          "hometown": "Round Rock",
          "position": "Goalie",
          "class_year": "So",
          "home_state": "Texas",
          "jersey_number": "1"
        },
        {
          "name": "Austin Constable",
          "hometown": "Charleston",
          "position": "Attack/Midfield",
          "class_year": "So",
          "home_state": "S.C.",
          "jersey_number": "2"
        },
        {
          "name": "Liam Byrne",
          "hometown": "Smithtown",
          "position": "Attack",
          "class_year": "Fr",
          "home_state": "N.Y.",
          "jersey_number": "4"
        }
      ]
    },
    "status": "success"
  }
}

About the Binghamton Bearcats API

What the API Returns

The get_roster endpoint returns the complete current Binghamton University men's lacrosse roster in a single response. The top-level object includes a total integer representing the number of players on the active roster, and a players array where each element contains name, jersey_number, position, class_year, hometown, and home_state.

Endpoint Behavior

get_roster takes no input parameters. There is no filtering by position, class year, or name — the full roster is always returned. The class_year field uses standard NCAA abbreviations: Fr, So, Jr, Sr, and Gr (graduate). The roster data reflects the season currently displayed on the Binghamton Athletics website, so it updates as the program makes roster changes during a season.

Data Coverage

Coverage is limited to the men's lacrosse program at Binghamton University (SUNY Binghamton). Each player's hometown and home_state fields reflect the location listed in the official athletics roster, which is typically the player's pre-college hometown rather than current residence. The API does not include statistics, schedule data, or coaching staff.

Reliability & maintenanceVerified

The Binghamton Bearcats API is a managed, monitored endpoint for binghamtonbearcats.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when binghamtonbearcats.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official binghamtonbearcats.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
8h ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a team directory display showing jersey numbers, positions, and class years for Binghamton lacrosse fans
  • Track roster composition changes across seasons by comparing total player counts over time
  • Map player geographic distribution using hometown and home_state fields to visualize recruiting reach
  • Filter and display players by class year (Fr/So/Jr/Sr/Gr) to analyze team experience levels
  • Populate a fantasy sports or bracket application with current Binghamton lacrosse player names and positions
  • Monitor roster additions or departures during transfer portal windows by diffing successive API responses
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Binghamton University Athletics have an official developer API?+
No. Binghamton Athletics does not publish a public developer API or documented data feed for roster or sports data.
What does the class_year field contain, and are graduate students included?+
The class_year field uses standard NCAA eligibility abbreviations: Fr (freshman), So (sophomore), Jr (junior), Sr (senior), and Gr (graduate). Graduate students with remaining eligibility appear in the roster with the Gr designation, the same as any other player.
Does the API cover player statistics or game performance data?+
Not currently. The API covers roster identity fields only: name, jersey number, position, class year, hometown, and home state. Statistics, game logs, and season performance data are not included. You can fork this API on Parse and revise it to add an endpoint targeting the stats section of the Binghamton Athletics site.
Is roster data available for other Binghamton sports or the women's lacrosse team?+
Not currently. This API covers only the men's lacrosse roster. Other sports programs and the women's lacrosse team are not included. You can fork this API on Parse and revise it to point at a different sport's roster page on binghamtonbearcats.com.
How current is the roster data returned by get_roster?+
The data reflects the roster as it appears on the Binghamton Athletics website at the time of the request. The source updates when the athletics department makes changes — mid-season additions, transfers, or walk-ons may appear with a short lag depending on when the official site is updated.
Page content last updated . Spec covers 1 endpoint from binghamtonbearcats.com.
Related APIs in SportsSee all →
bucknellbison.com API
Access the complete Bucknell University men's lacrosse roster with detailed player information including names, positions, class years, jersey numbers, and hometowns. Stay updated on the team's current lineup and get to know individual players' backgrounds and athletic profiles.
bryantbulldogs.com API
Get instant access to the current Bryant Bulldogs men's lacrosse roster with complete player information including names, positions, class years, jersey numbers, and hometowns. Stay up-to-date with the team's lineup and quickly look up individual player details whenever you need them.
ualbanysports.com API
Get the current UAlberta men's lacrosse team roster with player information including names, positions, class years, jersey numbers, and hometowns. Perfect for staying updated on team composition, finding specific player details, or tracking roster changes throughout the season.
brownbears.com API
brownbears.com API
gogriffs.com API
Retrieve the complete men's lacrosse roster for Canisius University, including player names, numbers, positions, and other profile details from the official GoGriffs athletics website. Stay up-to-date with the latest team composition and player information whenever the roster is updated.
athletics.bellarmine.edu API
Access the complete Bellarmine University men's lacrosse roster with detailed player information including names, positions, class years, jersey numbers, and hometowns. Use this data to stay updated on team composition, track player development across their college years, or research specific athletes on the roster.
goterriers.com API
Access the complete Boston University men's lacrosse roster with detailed player information including names, positions, class years, jersey numbers, and hometowns. Get up-to-date team roster data directly from the official BU Athletics website.
goairforcefalcons.com API
Access the current Air Force Falcons men's lacrosse roster to view player names, numbers, positions, and other team information. Stay up-to-date with the latest squad composition for the Air Force Academy's lacrosse program.