tomzmtl / saltistic

A Smash Bros statistics app. No longer maintained.
http://saltistic.petate.io
MIT License
2 stars 0 forks source link

Public API release 1 #16

Closed tomzmtl closed 8 years ago

tomzmtl commented 8 years ago

First setup of the public API, includes initial ground work and the following endpoints:


api/v1/version

Obtain current app version.

{
  "number": "0.4.0",
  "name": "Lucina"
}

api/v1/salt 0.4

Obtain Salt-y-Meter rankings.

[
  {
    "name": "RY",
    "rank": 1,
    "score": 32
  },
  {
    "name": "Sendo",
    "rank": 2,
    "score": 28
  }
]
tomzmtl commented 8 years ago

Done