worldsnowboardtour.com APIworldsnowboardtour.com ↗
Access WSPL rankings, rider profiles, event schedules, and competition results across 6 snowboard disciplines via the World Snowboard Tour API.
curl -X GET 'https://api.parse.bot/scraper/12dbebfe-cbec-4aa9-bedb-9c4e3c01eacc/get_points_list?page=1&gender=1&discipline=5' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve the World Snowboarding Points List (WSPL) rankings. Returns paginated ranked athletes for a given discipline and gender.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| gender | integer | Gender ID: 1 (Men), 2 (Women). |
| discipline | integer | Discipline ID: 3 (Big Air), 4 (Halfpipe), 5 (Slopestyle), 19 (Freeride), 40 (Rails), 51 (Knuckle Huck). |
{
"type": "object",
"fields": {
"next": "string or null, URL of next page",
"current": "integer, current page number",
"results": "array of ranked athlete objects with id, rank, first_name, last_name, country, sum_points, event_stops_scores"
},
"sample": {
"data": {
"next": "https://wyldata.com/api/iframes/wspl-ranking/8/?discipline=5&format=json&gender=1&page=2",
"current": 1,
"results": [
{
"id": 33023,
"age": 23,
"rank": 1,
"gender": 1,
"country": {
"id": 80,
"ioc": "CAN",
"name": "Canada"
},
"last_name": "Brearley",
"first_name": "Liam",
"ranking_id": 8,
"sum_points": "926.09"
}
],
"previous": null
},
"status": "success"
}
}About the worldsnowboardtour.com API
This API exposes 8 endpoints covering the World Snowboarding Points List (WSPL), rider profiles, event schedules, and competition results across six disciplines — Big Air, Halfpipe, Slopestyle, Freeride, Rails, and Knuckle Huck. The get_points_list endpoint returns paginated ranked athletes with discipline-specific points and event stop scores, while get_event_results delivers per-athlete scores, finishing positions, and ranking points for any individual competition stop.
Rankings and Rider Data
The get_points_list endpoint returns the official WSPL standings, filterable by gender (1 for Men, 2 for Women) and discipline ID. Each ranked entry includes id, rank, country, sum_points, and an event_stops_scores array that breaks down points per stop. The get_rankings_by_discipline endpoint offers a shortcut for side-by-side Men/Women leaderboards with a configurable limit on how many top riders to return.
Rider detail is available through get_rider_profile, which accepts a rider_id sourced from either get_points_list or get_riders_list. The profile includes a career_stats object with fields for competition_starts, competition_wins, competition_podiums, avg_finish_position, and best_run_score, plus a recent_results array. get_riders_list paginates all registered athletes and includes each rider's disciplines array and athlete_gender.
Events and Competition Results
get_events_schedule retrieves the global event calendar with filters for nation (ISO country code such as USA, JPN, AUT), date_from, date_to, and discipline. Results are ordered by date descending and include event-level fields like city, status, competitions, and disciplines. Drilling into a specific event with get_event_details returns individual competition objects — each with its own id, discipline, gender, and date — that feed directly into get_event_results.
get_event_results accepts a competition_id from get_event_details and returns each athlete's score, end_position, ranking_pts, and country. The get_news_list endpoint surfaces up to 10 recent WordPress post objects from worldsnowboardtour.com, including title, content, link, date, and categories.
- Build a live WSPL leaderboard app filtered by discipline and gender using
get_points_list - Track a specific athlete's career podiums, win rate, and recent results via
get_rider_profile - Aggregate per-stop scores across a season to chart ranking progression over time
- Display an upcoming event calendar filtered by country and discipline for a regional snowboard fan site
- Compare top Men and Women rankings side by side for a given discipline using
get_rankings_by_discipline - Retrieve detailed competition results including scores and positions for post-event reporting
- Power a news feed widget showing the latest World Snowboarding announcements via
get_news_list
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does World Snowboarding (worldsnowboardtour.com) have an official public developer API?+
What does `get_event_results` return and how is it different from `get_events_schedule`?+
get_events_schedule lists events with metadata such as name, city, status, and disciplines — it does not include per-athlete results. get_event_results accepts a competition_id (retrieved from get_event_details) and returns result-level data: each rider's score, end_position, ranking_pts, and country.Can I retrieve athlete photos, social media links, or biographical data through the rider endpoints?+
get_rider_profile covers career statistics (competition_wins, competition_podiums, avg_finish_position, best_run_score) and recent results, but does not include photos, social handles, or biographical text. You can fork this API on Parse and revise it to add an endpoint targeting that additional profile data.Does `get_news_list` support filtering by category or date, or return more than 10 articles?+
What discipline IDs are supported across the filtering endpoints?+
get_points_list, get_events_schedule, and get_rankings_by_discipline.