Discover/FIE API
live

FIE APIfie.org

Access FIE world rankings, fencer profiles, competition brackets, and athlete search via 5 endpoints covering the International Fencing Federation.

This API takes change requests — .
Endpoint health
verified 4d ago
get_competition_detail
get_athletes_search
get_rankings
get_competitions_list
get_athlete_profile
5/5 passing latest checkself-healing
Endpoints
5
Updated
4d ago

What is the FIE API?

The FIE API provides 5 endpoints covering athlete search, individual fencer profiles, world rankings, competition listings, and full competition details from the International Fencing Federation at fie.org. The get_athlete_profile endpoint returns biographical data, season-by-season competition results, and head-to-head opponent match histories. Rankings can be filtered by weapon, gender, level, and season across individual and team categories.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination.
Search by athlete name (last name recommended, e.g. 'LEHIS').
Comma-separated gender codes: f (female), m (male).
Country name filter (e.g. 'ESTONIA').
If true, search for team athletes only.
api.parse.bot/scraper/8c29260a-c015-45cd-aa8d-287a13560c95/<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/8c29260a-c015-45cd-aa8d-287a13560c95/get_athletes_search?page=1&query=LEHIS&gender=f%2Cm&is_team=false' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalmissing one? ·

Search for fencers by name with optional filters. Returns a paginated list of athletes matching the search criteria. Results include basic athlete info (id, name, country, gender, age). Use the athlete id to fetch a full profile via get_athlete_profile.

Input
ParamTypeDescription
pageintegerPage number for pagination.
querystringSearch by athlete name (last name recommended, e.g. 'LEHIS').
genderstringComma-separated gender codes: f (female), m (male).
countrystringCountry name filter (e.g. 'ESTONIA').
is_teambooleanIf true, search for team athletes only.
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "items": "array of athlete objects with id, name, firstName, lastName, country, countryCode, gender, age, flag, image",
    "totalFound": "integer, total number of matching athletes"
  },
  "sample": {
    "data": {
      "page": 1,
      "items": [
        {
          "id": 24108,
          "age": 31,
          "flag": "EE",
          "name": "LEHIS Katrina",
          "image": "https://static.fie.org/uploads/6/31185-Lehis_Katrina_ID.jpg",
          "gender": "F",
          "weapon": null,
          "country": "Estonia",
          "lastName": "LEHIS",
          "firstName": "Katrina",
          "countryCode": "EST"
        }
      ],
      "totalFound": 4
    },
    "status": "success"
  }
}

About the FIE API

Athlete Search and Profiles

The get_athletes_search endpoint accepts a name query (last name recommended), optional gender, country, and is_team filters, and returns paginated results including each athlete's id, name, country, gender, weapon, and age. The numeric id returned here feeds directly into get_athlete_profile, which returns a full bio object (club, occupation, injuries, awards), a results array of competition placements with date, city, and place, and an opponents array showing recent match scores and adversary details. A season parameter and category parameter (senior s or junior j) let you scope the profile data to a specific competitive year.

Rankings

The get_rankings endpoint returns two arrays: topFencers (the leading ranked athletes) and allAthletes (the full paginated set). Filtering is available by weapon (epee e, foil f, sabre s), gender, level (senior, junior, cadet), type (individual or team), season, and country. Each ranked entry includes id, name, country, rank, and points, making it straightforward to build leaderboards or monitor point movements across seasons.

Competitions

The get_competitions_list endpoint lists FIE competitions with filters for weapon, gender, season, status (previous or upcoming), and competition type. Each item in the items array includes competitionId, name, location, weapon, gender, and dates. Pass a competitionId and season to get_competition_detail to retrieve full metadata via the competition object, the list of participating athletes, tableau bracket data, and pools with poolsResults — the data needed to reconstruct the draw and match outcomes for a given event.

Reliability & maintenanceVerified

The FIE API is a managed, monitored endpoint for fie.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when fie.org 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 fie.org 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
4d ago
Latest check
5/5 endpoints 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 fencing athlete directory with search by name, country, weapon, and gender using get_athletes_search.
  • Track a fencer's career trajectory by pulling season-by-season placement history from get_athlete_profile.
  • Monitor FIE world ranking point changes over multiple seasons using get_rankings with season and weapon filters.
  • Generate upcoming competition calendars filtered by weapon and gender with get_competitions_list and status=upcoming.
  • Reconstruct full tournament bracket and pool results for any FIE event using get_competition_detail tableau and poolsResults fields.
  • Analyze head-to-head fencer matchups using the opponents array returned by get_athlete_profile.
  • Identify top-ranked athletes by country and category for scouting or fantasy fencing applications via get_rankings.
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 the FIE have an official developer API?+
No. The FIE does not publish a public developer API or documented data feed. fie.org provides data through its public website only.
What does `get_competition_detail` return beyond basic competition info?+
It returns the full competition metadata object (name, location, dates, weapon, gender, fencerCount), a list of registered athletes, tableau bracket data showing the elimination draw, and pools plus poolsResults objects with pool assignments and match results. Both season and competition_id are required inputs.
Does the rankings endpoint cover cadet-level athletes?+
Yes. The level parameter on get_rankings accepts s (senior), j (junior), and c (cadet), so cadet rankings are accessible. Team rankings are also available by setting type to t.
Are individual bout-level scores within tableau rounds returned by `get_competition_detail`?+
The poolsResults object contains pool match results, and tableau contains bracket data, but granular scoring breakdowns for every individual elimination-round bout are not guaranteed at the same detail level as pool data. You can fork this API on Parse and revise it to add a dedicated bout-detail endpoint if finer tableau scoring is needed.
Can I retrieve historical athlete rankings at a specific date rather than by season?+
Not currently. The get_rankings endpoint filters by season year but does not support point-in-time queries within a season. You can fork this API on Parse and revise it to add date-level ranking snapshots if that granularity is required.
Page content last updated . Spec covers 5 endpoints from fie.org.
Related APIs in SportsSee all →
fencing.ophardt.online API
Search fencing tournaments and view event details, attendee lists, and competition schedules from the Ophardt Team Sportevent platform. Quickly find upcoming events and see who is registered to compete.
data.fei.org API
Search and explore detailed information about international equestrian sports, including horses, riders, competition results, rankings, and show schedules from the FEI database. Look up specific athletes and horses, browse upcoming events by venue, and track performance across national federations.
ifsc-climbing.com API
Track world rankings, search athlete profiles, and browse competition results and schedules across the international sport climbing circuit. Stay updated with the latest news and event information from the official IFSC competition calendar.
ratings.fide.com API
Find chess players and track their FIDE ratings, rankings, and performance history by searching the official ratings database or browsing the world's top-ranked players. Get detailed player profiles with complete rating trends and game statistics to analyze any player's competitive record.
calendar.fide.com API
Search the official FIDE chess tournament calendar to discover upcoming competitions and retrieve detailed information about events, including time controls, tournament formats, and prize pools. Find the perfect chess tournament to join by browsing listings with comprehensive event details all in one place.
fiba.basketball API
Track FIBA basketball games and scores by date, dive into game details, explore competition schedules, check world rankings, and search for the latest basketball news all in one place. Stay updated on international basketball with comprehensive data covering live games, team information, and competitive standings.
WorldAthletics.org API
Search for professional athletes and access their competition results, performance records, and complete career history from World Athletics. Track athlete achievements across events, view detailed competition outcomes, and explore career milestones all in one place.
fifa.com API
Track FIFA world rankings for men's and women's teams, browse tournament schedules and standings, access detailed match information with live timelines, and explore comprehensive player statistics and profiles. Stay updated with the latest football news and easily search across teams, players, and matches all in one place.