Skip to content
Martin Stancanelli edited this page May 13, 2017 · 14 revisions

Tallerify App Server REST API

GET /ping

Response:

{
  "ping": "pong"
}

GET /tracks/$id

Response:

{
  "trackId": 123456,
  "url": "http://tallerify.com/tracks/moonlight.mp3"
}

POST /tracks

Expected params:

  • Multipart mp3 file

Response:

{
  "trackId": 1234567890
}
Clone this wiki locally