Discover/Bellarmine API
live

Bellarmine APIathletics.bellarmine.edu

Retrieve the full Bellarmine University men's lacrosse roster via API. Returns player name, position, class year, jersey number, and hometown for every athlete.

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

What is the Bellarmine API?

The Bellarmine University Men's Lacrosse Roster API exposes 6 data fields per player across the complete current roster through a single get_lacrosse_roster endpoint. Each record includes full name, position, class year, jersey number, hometown, and home state. The endpoint also captures team managers, who appear in the roster without jersey numbers. No input parameters are required.

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

No input parameters required.

api.parse.bot/scraper/51e8366a-0b70-4168-9687-3a2604585682/<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/51e8366a-0b70-4168-9687-3a2604585682/get_lacrosse_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 athletics-bellarmine-edu-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: Bellarmine University Men's Lacrosse Roster API."""
from parse_apis.athletics_bellarmine_edu_api import BellarmineLacrosse, ParseError

client = BellarmineLacrosse()

# List all players on the current roster, capped at 10 for demonstration.
try:
    for player in client.players.list(limit=10):
        print(f"#{player.jersey_number} {player.name} — {player.position} ({player.class_year}) from {player.hometown}, {player.home_state}")
except ParseError as e:
    print(f"Failed to parse roster: {e}")
    raise

# Grab the first player from the full roster.
first_player = client.players.list(limit=1).first()
if first_player is not None:
    print(f"\nFirst player: {first_player.name}, Position: {first_player.position}")

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

Returns the full current men's lacrosse roster for Bellarmine University. Each player record includes full name, position, class year (Fr./So./Jr./Sr./Gr.), jersey number, hometown, and home state. Includes team managers who lack jersey numbers. Makes a single request to the roster page.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer count of players in the roster",
    "players": "array of player objects with name, position, class_year, jersey_number, hometown, home_state"
  },
  "sample": {
    "data": {
      "total": 60,
      "players": [
        {
          "name": "Maxton Messner",
          "hometown": "Granville",
          "position": "Midfield",
          "class_year": "So.",
          "home_state": "OH",
          "jersey_number": "0"
        },
        {
          "name": "Dillon O'Rourke",
          "hometown": "Fishers",
          "position": "Defense",
          "class_year": "Fr.",
          "home_state": "IN",
          "jersey_number": "1"
        },
        {
          "name": "Grant Crossley",
          "hometown": "Horseheads",
          "position": "Goalie",
          "class_year": "Sr.",
          "home_state": "NY",
          "jersey_number": "6"
        }
      ]
    },
    "status": "success"
  }
}

About the Bellarmine API

What the API Returns

The get_lacrosse_roster endpoint returns the complete active men's lacrosse roster for Bellarmine University. The response contains a total integer indicating how many players are listed, alongside a players array. Each object in that array includes name, position, class_year, jersey_number, hometown, and home_state.

Class Year and Roster Coverage

The class_year field uses standard NCAA abbreviations: Fr. (freshman), So. (sophomore), Jr. (junior), Sr. (senior), and Gr. (graduate). Team managers are included in the players array as full records; their jersey_number field will be absent or null since managers are not assigned numbers. This makes the total count a reflection of the full roster including non-athlete members.

No Filtering Required

The endpoint takes no input parameters — it returns the entire roster in a single call. If you need to segment by position, class year, or home state, that filtering can be applied on your end against the returned players array. The data reflects the current published roster, so it stays in sync with the Bellarmine Athletics website as the season progresses.

Reliability & maintenanceVerified

The Bellarmine API is a managed, monitored endpoint for athletics.bellarmine.edu — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when athletics.bellarmine.edu 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 athletics.bellarmine.edu 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 page filtered by position (e.g., attackers, defenders, goalies) using the position field
  • Track class composition over time by grouping players on the class_year field
  • Generate geographic heat maps of player hometowns using hometown and home_state
  • Identify roster size changes across seasons by comparing the total count over multiple calls
  • Cross-reference jersey numbers from broadcast footage against the jersey_number field for player identification
  • Populate a scouting database with athlete names and positions for Division II lacrosse research
  • Distinguish active players from team staff by filtering records that lack a jersey_number
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 Bellarmine University Athletics offer an official developer API?+
No. Bellarmine Athletics does not publish a public developer API or data feed for roster information. This Parse API is the structured way to access that data programmatically.
What does the `jersey_number` field contain for team managers?+
Team managers are included in the players array but do not have assigned jersey numbers. Their jersey_number field will be null or absent in the response. You can identify manager records by checking for a missing or null jersey_number.
Does the API cover women's lacrosse or other Bellarmine sports rosters?+
Not currently. The API covers only the men's lacrosse roster. You can fork it on Parse and revise it to add an endpoint targeting the women's lacrosse roster or other Bellarmine Athletics sport pages.
Does the API include player statistics, career stats, or game performance data?+
Not currently. The API returns roster identity fields — name, position, class year, jersey number, and hometown — but no game or season statistics. You can fork it on Parse and revise it to add an endpoint pulling per-player stats if that data is available on the athletics site.
How current is the roster data returned by `get_lacrosse_roster`?+
The endpoint reflects the roster as it appears on the Bellarmine Athletics website at the time of the call. Roster changes such as transfers, additions, or removals will appear once the source page is updated by the athletics department.
Page content last updated . Spec covers 1 endpoint from athletics.bellarmine.edu.
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.
binghamtonbearcats.com API
Access the current Binghamton Bearcats 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 university's lacrosse program.
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.
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.
brownbears.com API
brownbears.com API
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.
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.
csuvikings.com API
Retrieve the complete current roster of Cleveland State University's men's lacrosse team, including player names and details. Use this data to stay updated on team composition, player information, and squad management for the Vikings program.