Revision as of 21:58, 28 April 2015 by Enymind (Talk | contribs) (Ak: Uusi sivu: ==Rest API== Replace "live.enymind.fi" with your own address. ===Get all races=== http://live.enymind.fi/get.php '''Content-type:''' text/plain '''Example response:''' 1|Race 1 …)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Rest API

Replace "live.enymind.fi" with your own address.

Get all races

http://live.enymind.fi/get.php

Content-type: text/plain

Example response:

1|Race 1
2|Race 2
3|Race 3

Get all rounds from race

http://live.enymind.fi/live/api.php?rounds&cid=1

Where parameters:

  • cid: race id

Content-type: application/json

Example response:

[
 ["1051", "Lähtö 1"],
 ["1052", "Lähtö 2"],
 ["1055", "FEEDTEST Run 1"]
]

Get results from a round

http://live.enymind.fi/live/api.php?ajax&cid=1&rid=1

Where parameters:

  • cid: race id
  • rid: round id

Content-type: application/json

Example response:

["FEEDTEST Run 1", "00:15:08", "Race!", "qualificationResults",
 [
  ["11193", " ", "6", "Empty", "10", "00:00:22.253", "1"],
  ["11196", " ", "9", "Empty", "10", "00:00:22.591", "1"],
  ["11188", " ", "1", "Empty", "10", "00:00:23.300", "1"]
 ]
]