Discover/Goairforcefalcons API
live

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.

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 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.

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

No input parameters required.

api.parse.bot/scraper/656cf840-7eb9-4753-8b61-4f6102a38574/<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/656cf840-7eb9-4753-8b61-4f6102a38574/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 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")
All endpoints · 1 totalmissing one? ·

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.

Input

No input parameters required.

Response
{
  "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.

Reliability & maintenanceVerified

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.

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 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 total periodically and comparing snapshots.
  • Generate a printable game-day roster card showing jersey numbers, names, and class years.
  • Analyze geographic recruiting distribution by aggregating the hometown field 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.
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 goairforcefalcons.com offer an official developer API?+
No. The Air Force Academy athletics site does not publish a public developer API or documented data feed for roster information.
What position codes does the API return, and what do they mean?+
The 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.
Does the API cover statistics, season schedules, or game scores?+
Not currently. The API covers only the men's lacrosse roster — player identity and biographical fields. You can fork it on Parse and revise to add endpoints that pull schedule or stats data from the same athletics site.
Does the API cover rosters for other Air Force sports or the women's lacrosse program?+
Not currently. The API is scoped to the men's lacrosse roster only. You can fork it on Parse and revise to add endpoints targeting other sport roster pages on goairforcefalcons.com.
How current is the roster data?+
The API reflects whatever is published on the official Air Force Academy athletics roster page at the time of the request. It does not cache historical snapshots, so off-season or mid-season roster changes appear once the source page is updated.
Page content last updated . Spec covers 1 endpoint from goairforcefalcons.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.
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.
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.
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.
goarmywestpoint.com API
Retrieve the complete Army West Point men's lacrosse roster with detailed player information including names, positions, class years, jersey numbers, and hometowns. Stay updated on team composition and player details for tracking the squad throughout the season.
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.