Discover/Bucknell Bison API
live

Bucknell Bison APIbucknellbison.com

Get the full Bucknell 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_roster
1/1 passing latest checkself-healing
Endpoints
1
Updated
8h ago

What is the Bucknell Bison API?

The Bucknell Bison men's lacrosse roster API exposes one endpoint, get_roster, that returns the complete current team roster with 5 data fields per player. Each response includes the total player count, along with an array of player records covering full name, position abbreviation, class year, jersey number, and hometown. No input parameters are required to retrieve the full dataset.

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

No input parameters required.

api.parse.bot/scraper/0e548008-fb59-41d6-aa9d-5c3a3d144080/<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/0e548008-fb59-41d6-aa9d-5c3a3d144080/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 bucknellbison-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: Bucknell Bison Men's Lacrosse roster — fetch and inspect players."""
from parse_apis.bucknellbison_com_api import BucknellBison, ParseError

client = BucknellBison()

# 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:>3} {player.full_name:<25} {player.position}  {player.class_year}  {player.hometown}")
except ParseError as e:
    print(f"Roster unavailable: {e.code}")

# Grab just the first player to show .first() usage.
first_player = client.players.list(limit=1).first()
if first_player is not None:
    print(f"\nFirst listed: {first_player.full_name}, #{first_player.jersey_number}")

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

Returns the full current men's lacrosse roster. Each player record includes full name, position abbreviation, class year, jersey number, and hometown (city and state). The roster is returned in jersey-number order as displayed on the athletics site. One round trip to the roster page.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "total": "integer count of players on the roster",
    "players": "array of player objects with full_name, position, class_year, jersey_number, and hometown"
  },
  "sample": {
    "data": {
      "total": 47,
      "players": [
        {
          "hometown": "Larchmont, N.Y.",
          "position": "M",
          "full_name": "Luke Brennan",
          "class_year": "So.",
          "jersey_number": "0"
        },
        {
          "hometown": "Montclair, N.J.",
          "position": "G",
          "full_name": "Parker Day",
          "class_year": "So.",
          "jersey_number": "00"
        },
        {
          "hometown": "Short Hills, N.J.",
          "position": "A",
          "full_name": "Crispin Kaye",
          "class_year": "So.",
          "jersey_number": "1"
        }
      ]
    },
    "status": "success"
  }
}

About the Bucknell Bison API

What the API Returns

The single get_roster endpoint returns a total integer indicating how many players are on the active roster, plus a players array. Each object in that array contains full_name, position (as a standard lacrosse abbreviation such as ATT, MID, DEF, or GK), class_year (e.g. Fr., So., Jr., Sr.), jersey_number, and hometown as a city-and-state string.

Response Structure and Ordering

Results are ordered by jersey number, matching the display order on the Bucknell Athletics roster page. This makes it straightforward to render a squad list sorted by number without any client-side sorting. There are no required query parameters — a single call to get_roster returns the entire active roster in one response.

Data Scope

Coverage is scoped to the men's lacrosse program at Bucknell University. The data reflects the roster as currently published on the official Bucknell Bison athletics site. Fields like class_year and hometown allow applications to filter or group players by academic standing or geographic origin, which is useful for recruiting research, fan apps, and academic projects tracking athlete demographics.

Reliability & maintenanceVerified

The Bucknell Bison API is a managed, monitored endpoint for bucknellbison.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when bucknellbison.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 bucknellbison.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 fan-facing roster display sorted by jersey number using jersey_number and full_name fields
  • Analyze geographic distribution of recruits by parsing the hometown field across all players
  • Filter the roster by class_year to identify senior players likely to age out of eligibility
  • Map player hometowns to visualize Bucknell lacrosse recruiting regions
  • Track roster size changes over time by comparing the total field across periodic snapshots
  • Populate a depth-chart prototype grouped by position abbreviations like ATT, MID, DEF, and GK
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 Bucknell Athletics offer an official developer API for roster data?+
No. Bucknell Athletics does not publish a public developer API or documented data feed for roster information.
What does the `position` field contain — full text or abbreviations?+
The position field returns the abbreviation as displayed on the Bucknell Athletics site, such as ATT for attacker, MID for midfielder, DEF for defender, and GK for goalkeeper. It is not expanded to a full position name in the response.
Does the API cover statistics, game logs, or season performance data for individual players?+
Not currently. The API covers identity and roster fields: name, position, class year, jersey number, and hometown. Per-player statistics or game logs are not included. You can fork this API on Parse and revise it to add an endpoint targeting the Bucknell Athletics stats pages.
Is roster data for other Bucknell sports programs available through this API?+
Not currently. The API is scoped exclusively to the men's lacrosse roster. Other programs such as football, basketball, or women's lacrosse are not covered by this endpoint. You can fork the API on Parse and revise it to target a different sport's roster page.
How fresh is the roster data returned by `get_roster`?+
The API reflects the roster as published on the official Bucknell Bison athletics site. Roster updates — such as mid-season additions or removals — will appear once the source page is updated. There is no historical or versioned roster data available through this endpoint.
Page content last updated . Spec covers 1 endpoint from bucknellbison.com.
Related APIs in SportsSee all →
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.
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.
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.
brownbears.com API
brownbears.com API
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.
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.
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.
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.