Goairforcefalcons APIgoairforcefalcons.com ↗
Access the full Air Force Academy men's lacrosse roster via API. Returns player names, jersey numbers, positions, class years, and hometowns in one request.
What is the Goairforcefalcons API?
The goairforcefalcons.com Men's Lacrosse API exposes 1 endpoint — get_lacrosse_roster — that returns the complete current roster with 5 structured fields per player: name, jersey number, position code, academic class year, and hometown. No filters or pagination parameters are required; a single request delivers the entire squad.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/656cf840-7eb9-4753-8b61-4f6102a38574/get_lacrosse_roster' \ -H 'X-API-Key: $PARSE_API_KEY'
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 goairforcefalcons-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: Air Force Falcons Men's Lacrosse roster — fetch and explore players."""
from parse_apis.goairforcefalcons_com_api import AirForceFalcons, ParseError
client = AirForceFalcons()
# List all players on the roster, capped at 10 for a quick preview.
try:
for player in client.players.list(limit=10):
print(f"#{player.jersey_number} {player.name} — {player.position}, {player.class_year}, {player.hometown}")
except ParseError as e:
print(f"Failed to retrieve roster: {e}")
# Grab the first attackman to demonstrate .first() usage.
first_player = client.players.list(limit=1).first()
if first_player is not None:
print(f"\nFirst player: {first_player.name} from {first_player.hometown}")
print("\nexercised: players.list")
Returns the full current men's lacrosse roster. Each player entry includes full name, jersey number, position code (e.g. A, D, M, FO, GK, LSM), academic class year (Fr., So., Jr., Sr., Gr.), and hometown with state. One request fetches the entire roster; no pagination is needed.
No input parameters required.
{
"type": "object",
"fields": {
"total": "integer count of players in the roster",
"players": "array of player objects with name, jersey_number, position, class_year, and hometown"
},
"sample": {
"data": {
"total": 98,
"players": [
{
"name": "Sam Lovell",
"hometown": "Austin, TX",
"position": "A",
"class_year": "So.",
"jersey_number": "0"
},
{
"name": "Caelan Driggs",
"hometown": "Landenberg, PA",
"position": "A",
"class_year": "Sr.",
"jersey_number": "1"
},
{
"name": "Rogan Kane",
"hometown": "Tampa, FL",
"position": "FO",
"class_year": "So.",
"jersey_number": "3"
}
]
},
"status": "success"
}
}About the Goairforcefalcons API
What the API Returns
The get_lacrosse_roster endpoint returns a total count of rostered players alongside a players array. Each object in that array contains name (full player name), jersey_number, position (abbreviated codes such as A for attack, D for defense, M for midfielder, FO for faceoff specialist, GK for goalkeeper, and LSM for long-stick midfielder), class_year (Fr., So., Jr., Sr., or Gr.), and hometown including state.
Endpoint Behavior
GET get_lacrosse_roster takes no input parameters. The response reflects the current published roster on the Air Force Academy athletics site. Because the entire roster is returned in one payload, there is no need to handle pagination or cursor logic on the client side.
Data Scope and Freshness
Coverage is scoped to the Air Force Falcons men's lacrosse program. The data tracks what the official athletics site publishes, so roster changes — new recruits, transfers, or mid-season updates — are reflected as the source is updated. The API does not include historical rosters from prior seasons.
The Goairforcefalcons API is a managed, monitored endpoint for goairforcefalcons.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when goairforcefalcons.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 goairforcefalcons.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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Build a real-time depth chart sorted by position codes (A, D, M, GK, LSM, FO) for fan or coaching dashboards.
- Track roster size changes over a season by polling
totalperiodically and comparing snapshots. - Generate a printable game-day roster card showing jersey numbers, names, and class years.
- Analyze geographic recruiting distribution by aggregating the
hometownfield across all players. - Power a team trivia app that quizzes users on player positions or jersey numbers.
- Seed a fantasy lacrosse or simulation game with current Air Force Falcons player data.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 200 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
| Team | $300/mo | 20,000 | 300 req/min |
| Company | $1,000/mo | 100,000 | 500 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.
Does goairforcefalcons.com offer an official developer API?+
What position codes does the API return, and what do they mean?+
position field uses standard lacrosse abbreviations: A (attack), D (defense), M (midfielder), FO (faceoff), GK (goalkeeper), and LSM (long-stick midfielder). The exact codes present in any given response depend on the current roster composition.