Racemanager API

  • Test API
    Schedule
    Distance
    Heat
  • 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}
    Schedulehttps://se.racemanager.net/api/page/competitions/open-nordic-canoe-marathon-championship-2023
    Heathttps://se.racemanager.net/api/page/competitions/open-nordic-canoe-marathon-championship-2023/men-u18-k1-200/h1
    Lanehttps://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}
    compIDUsing a compID gives you the competition schedule
    raceIDGives you a specific heat
    laneIDGives you a specific lane
    clubIDClub info

This website uses cookies to ensure you get the best experience.