Discover/IFSC Climbing API
live

IFSC Climbing APIifsc-climbing.com

Access IFSC world rankings, competition results, athlete profiles, event calendars, and news via a single API. 6 endpoints covering all major climbing disciplines.

Endpoint health
verified 4d ago
get_athlete_profile
get_rankings
get_event_results
get_event_calendar
search_site
6/6 passing latest checkself-healing
Endpoints
6
Updated
19d ago

What is the IFSC Climbing API?

The IFSC Climbing API provides 6 endpoints covering world rankings, event results, athlete profiles, competition schedules, site-wide search, and news from ifsc-climbing.com. The get_rankings endpoint returns ranked athlete lists with per-event score breakdowns across Boulder and Lead disciplines for both men and women. The get_event_results endpoint goes deeper, returning round-by-round ascent details for any finished or ongoing competition.

Try it
Discipline category ID.
api.parse.bot/scraper/30000c31-8532-4170-87e6-c4868eaf08ac/<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/30000c31-8532-4170-87e6-c4868eaf08ac/get_rankings?dcat_id=5' \
  -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 ifsc-climbing-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.

from parse_apis.world_climbing_ifsc_api import WorldClimbing, DisciplineCategory, Ranking, Event, Athlete, AthleteResult

client = WorldClimbing()

# Get Boulder Women world rankings using the enum
for ranking in client.rankings.list(dcat_id=DisciplineCategory.BOULDER_WOMEN):
    print(ranking.name, ranking.rank, ranking.score, ranking.country)
    for breakdown in ranking.score_breakdown:
        print(breakdown.event_name, breakdown.gained_pts)

# Browse event calendar for 2025
for event in client.events.list(season=2025):
    print(event.title, event.venue, event.local_start_date)

# Get detailed results for a specific event using the enum
event = client.event("ifsc-world-cup-bern-2025")
for result in event.results(event_id=1411, dcat_id=DisciplineCategory.LEAD_MEN):
    print(result.rank, result.name, result.country)
    for rnd in result.rounds:
        print(rnd.round_name, rnd.score)
        for ascent in rnd.ascents:
            print(ascent.route_name, ascent.top, ascent.points)

# Get athlete profile and check their discipline categories
athlete = client.athletes.get(athlete_id=1147, slug="janja-garnbret")
print(athlete.firstname, athlete.lastname, athlete.country, athlete.age)
for res in athlete.all_results:
    print(res.event_name, res.discipline, res.rank, res.d_cat)

# Search the site
for group in client.searchresultgroups.search(query="boulder"):
    print(group.type, group.count)
    for doc in group.documents:
        print(doc.title, doc.slug)

# Get latest news
for article in client.newsarticles.list():
    print(article.title, article.content_date, article.slug)
All endpoints · 6 totalmissing one? ·

Retrieve athlete world rankings by discipline category ID. Returns ranked athletes with their score breakdowns across events. Each ranking entry includes the athlete's total score and per-event point contributions. Paginates as a single page.

Input
ParamTypeDescription
dcat_idintegerDiscipline category ID.
Response
{
  "type": "object",
  "fields": {
    "ranking": "array of athlete ranking objects with athlete_id, name, rank, score, country, score_breakdown",
    "dcat_name": "string, discipline category name",
    "discipline_kind": "string, discipline type"
  },
  "sample": {
    "data": {
      "ranking": [
        {
          "name": "MCNEICE Erin",
          "rank": 1,
          "score": "5155.0",
          "country": "GBR",
          "lastname": "MCNEICE",
          "firstname": "Erin",
          "photo_url": "https://d1n1qj9geboqnb.cloudfront.net/ifsc/public/plnpwzpr487nyh1dgre50i0gmo2l",
          "athlete_id": 11468,
          "federation_id": 11,
          "score_breakdown": [
            {
              "rank": 4,
              "event_id": 1417,
              "included": true,
              "event_name": "IFSC World Championships Seoul 2025",
              "gained_pts": "1220.0",
              "discipline_kind": "boulder"
            }
          ]
        }
      ],
      "dcat_name": "BOULDER Women",
      "discipline_kind": "boulder"
    },
    "status": "success"
  }
}

About the IFSC Climbing API

Rankings and Competition Results

get_rankings accepts a dcat_id parameter with four accepted values — 5 (Lead Women), 6 (Lead Men), 7 (Boulder Women), 8 (Boulder Men) — and returns an array of athlete ranking objects that include rank, score, country, and a score_breakdown array showing how points were accumulated across individual events. Those event IDs in score_breakdown feed directly into get_event_results, which requires a dcat_id, an event_id, and an event_slug. The response includes the full ranked list for that event with per-round detail and ascent data, plus an event status field indicating whether the competition is finished or ongoing.

Athletes and Schedules

get_athlete_profile takes an athlete slug (e.g. janja-garnbret) and a numeric athlete_id, returning biographical fields like firstname, lastname, and country, along with an all_results array covering the athlete's full competition history — each entry tagged with season, rank, discipline, event_name, event_id, and d_cat. get_event_calendar returns the season's event list including slug, title, localStartDate, localEndDate, venue, and location. The optional season integer parameter lets you pull calendars for prior years.

Search and News

search_site accepts a free-text query and returns results grouped by type (athletes, events, news, photos, videos, documents), each group including a count and a documents array. The response also includes a total_count across all types — useful for building autocomplete or discovery features. get_news_articles requires no inputs and returns the homepage news feed as an array of objects with slug, title, tags, contentDate, thumbnail, and nested fields carrying description and videoId where applicable.

Reliability & maintenanceVerified

The IFSC Climbing API is a managed, monitored endpoint for ifsc-climbing.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ifsc-climbing.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 ifsc-climbing.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
4d ago
Latest check
6/6 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
  • Display live IFSC world rankings for Boulder or Lead disciplines in a climbing app, using get_rankings to pull rank, score, and country for all athletes.
  • Build a competition result viewer that retrieves round-by-round ascent data for any event using get_event_results with a known event_id and event_slug.
  • Populate an athlete profile page with career history by calling get_athlete_profile and iterating over the all_results array to chart rankings across seasons.
  • Generate a season competition calendar with venue and date information using get_event_calendar and the optional season parameter.
  • Implement a search feature across athletes, events, and news using search_site with a query string and filtering results by type.
  • Feed a news section or climbing media site by pulling the latest articles and video highlights via get_news_articles, using the videoId field for embed links.
  • Track a specific athlete's ranking trajectory by cross-referencing get_rankings score_breakdown event IDs with get_event_results data.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does IFSC have an official public developer API?+
IFSC does not publish an official public developer API or documentation portal for third-party access to its competition data.
What discipline categories are supported by `get_rankings` and `get_event_results`?+
Both endpoints accept a dcat_id with four values: 5 (Lead Women), 6 (Lead Men), 7 (Boulder Women), and 8 (Boulder Men). Speed climbing is not currently covered. The API addresses Boulder and Lead disciplines only. You can fork it on Parse and revise to add a Speed discipline endpoint if that data becomes available.
Does `get_athlete_profile` include biographical details like age, height, or social media links?+
The response returns firstname, lastname, country (3-letter code), and numeric id, plus the full all_results competition history. Extended biographical fields such as age, height, or social media handles are not currently exposed. You can fork the API on Parse and revise it to add those fields if the source exposes them.
Can I retrieve historical rankings from previous seasons?+
get_event_calendar supports a season parameter for past years, and get_athlete_profile returns an all_results array that spans multiple seasons with per-result season tags. However, get_rankings does not expose a season filter — it returns current world rankings only. You can fork the API on Parse and revise it to add a historical rankings endpoint.
What does `search_site` return beyond athlete profiles?+
Results are grouped by type, which can include athletes, events, news articles, photos, videos, and documents. Each group has a count and a documents array. The total_count field gives the aggregate across all types. The search is site-wide, not restricted to a single content type.
Page content last updated . Spec covers 6 endpoints from ifsc-climbing.com.
Related APIs in SportsSee all →
worldsnowboardtour.com API
Access World Snowboarding rankings, athlete profiles, and competition results across all disciplines. Browse the event calendar, retrieve detailed schedules and outcomes, and explore rider statistics from the professional snowboarding circuit.
fie.org API
Search and explore detailed fencer profiles, track athlete rankings, and review competition results and tournament brackets from the International Fencing Federation. Get comprehensive match histories and stay updated on world rankings across all fencing competitions.
cyclocross24.com API
Track cyclocross races and riders with access to current race calendars, detailed results, athlete profiles, and UCI rankings all in one place. Search for specific riders, monitor live standings, and stay updated on competitive rankings throughout the season.
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.
worldsurfleague.com API
Access World Surf League competition data including event schedules, heat-by-heat results, athlete profiles, and tour rankings. Retrieve detailed statistics and standings across all WSL tours.
ittf.com API
Access official World Table Tennis player statistics, match results, and event data to track tournament outcomes, compare player rankings, and explore international competition details. Search player profiles, browse featured athletes, and review results from global table tennis events.
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.
worldsdc.com API
Find swing dance competitions, look up dancer rankings and points, and discover events on a calendar or map. Search the WSDC database to check competition rules, locate dancers, and view the Annie Hirsch rankings all in one place.