Racemanager API
- https://se.racemanager.net/api/page/competitions/open-nordic-canoe-marathon-championship-2023/men-u18-k1-200/fa
OR
https://se.racemanager.net/api/page/231019API calls can be translated: https://se.racemanager.net/api/page/{ID}?lang=enTest APIScheduleDistanceHeatcompIDraceID raceID (Team)laneID laneID (Team)clubID?lang=en is automatically added to api calls below. API's can be consumed in many different ways. Here are just two examples.
PHP
$url = "https://racemanager.no/api/page{ID}?lang={lang}"; $json = file_get_contents($url); $json_data = json_decode($json, true); print_r($json_data);
JQuery
$(document).ready(function () { var data $.ajax({ dataType: 'json', url: "https://racemanager.no/api/page/{ID}?lang={lang}", data: data, success: function (data) { console.log(data); }, }) })
- https://se.racemanager.net/api/page/competitions/{competition}/{distance}/{heat}/{lane}
Schedule https://se.racemanager.net/api/page/competitions/open-nordic-canoe-marathon-championship-2023 Heat https://se.racemanager.net/api/page/competitions/open-nordic-canoe-marathon-championship-2023/men-u18-k1-200/h1 Lane https://se.racemanager.net/api/page/competitions/open-nordic-canoe-marathon-championship-2023/men-u18-k1-200/h1/5 https://se.racemanager.net/api/page/{ID}compID Using a compID gives you the competition schedule raceID Gives you a specific heat laneID Gives you a specific lane clubID Club info