Discover/CSU Vikings API
live

CSU Vikings APIcsuvikings.com

Access the current Cleveland State University men's lacrosse roster via API. Returns player names, positions, jersey numbers, class years, and hometowns.

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

What is the CSU Vikings API?

The CSU Vikings Men's Lacrosse Roster API returns the complete current roster for Cleveland State University's lacrosse program in a single call with 6 data fields per player. The get_lacrosse_roster endpoint delivers player name, position, class year, jersey number, hometown, and home state for every athlete on the active roster, along with a total player count.

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

No input parameters required.

api.parse.bot/scraper/a6230c7e-46dd-47f0-9565-fcd7b4ba295c/<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/a6230c7e-46dd-47f0-9565-fcd7b4ba295c/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 csuvikings-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: CSU Vikings Men's Lacrosse roster — fetch and inspect players."""
from parse_apis.csuvikings_com_api import CSUVikings, ParseError

client = CSUVikings()

# List the full roster, capped at 10 players for demonstration
for player in client.players.list(limit=10):
    print(f"#{player.jersey_number} {player.name} — {player.position}, {player.class_year} ({player.hometown}, {player.home_state})")

# Grab the first player to show single-item access
try:
    first_player = client.players.list(limit=1).first()
except ParseError as e:
    print(f"Roster unavailable: {e.code}")
else:
    if first_player is not None:
        print(f"\nFirst on roster: {first_player.name}, plays {first_player.position}")

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

Returns the current men's lacrosse roster for Cleveland State University. Each player entry includes full name, position, class year, jersey number, hometown, and home state. The roster is returned in a single call with no pagination needed.

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, and home_state"
  },
  "sample": {
    "data": {
      "total": 43,
      "players": [
        {
          "name": "Chase Gettys",
          "hometown": "Mason",
          "position": "Defense",
          "class_year": "Fr.",
          "home_state": "Ohio",
          "jersey_number": "0"
        },
        {
          "name": "Will Adair",
          "hometown": "Cincinnati",
          "position": "Midfield",
          "class_year": "R-Jr.",
          "home_state": "Ohio",
          "jersey_number": "1"
        },
        {
          "name": "Griffin Burkey",
          "hometown": "Pickerington",
          "position": "Midfield",
          "class_year": "Sr.",
          "home_state": "Ohio",
          "jersey_number": "2"
        }
      ]
    },
    "status": "success"
  }
}

About the CSU Vikings API

What the API Returns

The get_lacrosse_roster endpoint returns a single response containing a total integer (the count of active roster members) and a players array. Each object in that array includes name, position, class_year, jersey_number, hometown, and home_state — the full set of player-level details published on the official CSU Vikings athletics roster page.

Endpoint Details

get_lacrosse_roster takes no input parameters. There is no filtering by position, class year, or any other field at the request level — the full roster is returned in one call and any filtering happens client-side. This also means there is no pagination to handle; a single request gives you every player currently listed on the roster.

Coverage and Freshness

Data reflects the current published state of the men's lacrosse roster at csuvikings.com. The roster is specific to Cleveland State University's Division I program. Coverage is limited to the men's lacrosse squad; other CSU sports programs are not included in this API.

Reliability & maintenanceVerified

The CSU Vikings API is a managed, monitored endpoint for csuvikings.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when csuvikings.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 csuvikings.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 that lists each player's jersey number, position, and hometown
  • Track roster changes over time by diffing total counts and name fields across periodic calls
  • Filter the players array by class_year to analyze the team's recruiting class distribution
  • Identify the geographic spread of recruits using hometown and home_state fields
  • Populate a sports analytics tool with current CSU Vikings positional depth by aggregating position values
  • Automate alerts when new players are added or removed from the active roster
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 Cleveland State University Athletics have an official developer API?+
No. The CSU Vikings athletics site at csuvikings.com does not publish an official public API or developer program for accessing roster data.
What exactly does `get_lacrosse_roster` return for each player?+
Each player object in the players array contains name, position, class_year, jersey_number, hometown, and home_state. The response also includes a top-level total field with the integer count of players on the roster.
Can I filter the roster by position or class year in the API request?+
No request-level filtering is supported. The endpoint returns the complete roster in one response with no parameters. You can filter the returned players array client-side using position or class_year values.
Does this API cover player statistics or game performance data?+
Not currently. The API covers roster identity fields only: name, position, class year, jersey number, hometown, and home state. Season stats, game logs, and performance metrics are not included. You can fork this API on Parse and revise it to add an endpoint targeting the CSU Vikings stats pages.
Does the API cover other CSU Vikings sports programs beyond men's lacrosse?+
Not currently. Coverage is limited to the men's lacrosse roster. Other varsity programs at Cleveland State are not included in this API. You can fork it on Parse and revise to add endpoints for additional sports rosters.
Page content last updated . Spec covers 1 endpoint from csuvikings.com.
Related APIs in SportsSee all →
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.
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.
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.
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.
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