Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

楽曲検索API

yuya edited this page Aug 22, 2015 · 1 revision

Spotify, SoundCloud, レコチョクの検索APIをまとめて叩きます。

http://172.16.200.170:8888/search?q=SEARCH_WORD

例:

レスポンス

{
  "results": [
    {
      "title": "桜春",                       // 曲名
      "image": "https://i1.sndcdn.com/...",  // 画像URL
      "artist": "parla lunatico",            // アーティスト名
      "url": "https://api.soundcloud.com/...", // 楽曲データURL
      "source": ""                            // 情報提供元(spotify, soundcloud, recochoku)
    }, {
      // ... 以下同じ
    }
  ]
}
Clone this wiki locally