https://api.manana.kr/v2/karaoke/no/{no}.json

Supported HTTP Method : GET
@param
no
{no} ( ※ required )
brand
kumyoung / tj / dam / joysound
orderBy ( ※ GET Parameter Only )
{keyword}
no ASC ( ※ default )
limit ( ※ GET Parameter Only )
10 ( ※ default )
page ( ※ GET Parameter Only )
1 ( ※ default )
offset ( ※ GET Parameter Only )
0 ( ※ default ), Priorities : offset < page

Choice 1. https://api.manana.kr/v2/karaoke/no/{no}/kumyoung.json
Choice 2. https://api.manana.kr/v2/karaoke/no.json?no={no}&brand=kumyoung

{
    "total": {
        "row": 3,
        "page": 1
    },
    "page": 1,
    "offset": 0,
    "limit": 10,
    "data": [
        {
            "brand": "joysound",
            "no": "226471",
            "title": "glow",
            "singer": "黒崎一護・朽木ルキア(森田成一・折笠富美子)",
            "composer": "津田直士",
            "lyricist": "東川 遥",
            "release": "2009-04-28"
        },
        {
            "brand": "tj",
            "no": "26471",
            "title": "第2ボタンの誓い(D.C.S.G.~ダ・カーポ セカンドグラデュエーション~ OP)",
            "singer": "Yozuca",
            "composer": "Tororo",
            "lyricist": "Tororo",
            "release": "2007-05-01"
        },
        {
            "brand": "joysound",
            "no": "426471",
            "title": "Diggy Down",
            "singer": "Hey! Say! JUMP",
            "composer": "",
            "lyricist": "",
            "release": "2018-03-01"
        }
    ]
}
parseResponse({
    "data": {
        "total": {
            "row": 3,
            "page": 1
        },
        "page": 1,
        "offset": 0,
        "limit": 10,
        "data": [
            {
                "brand": "joysound",
                "no": "226471",
                "title": "glow",
                "singer": "黒崎一護・朽木ルキア(森田成一・折笠富美子)",
                "composer": "津田直士",
                "lyricist": "東川 遥",
                "release": "2009-04-28"
            },
            {
                "brand": "tj",
                "no": "26471",
                "title": "第2ボタンの誓い(D.C.S.G.~ダ・カーポ セカンドグラデュエーション~ OP)",
                "singer": "Yozuca",
                "composer": "Tororo",
                "lyricist": "Tororo",
                "release": "2007-05-01"
            },
            {
                "brand": "joysound",
                "no": "426471",
                "title": "Diggy Down",
                "singer": "Hey! Say! JUMP",
                "composer": "",
                "lyricist": "",
                "release": "2018-03-01"
            }
        ]
    }
});
<?xml version="1.0" encoding="UTF-8"?>
<response>
    <total>
        <row>3</row>
        <page>1</page>
    </total>
    <page>1</page>
    <offset>0</offset>
    <limit>10</limit>
    <data>
        <item>
            <brand>joysound</brand>
            <no>226471</no>
            <title>glow</title>
            <singer>黒崎一護・朽木ルキア(森田成一・折笠富美子)</singer>
            <composer>津田直士</composer>
            <lyricist>東川 遥</lyricist>
            <release>2009-04-28</release>
        </item>
        <item>
            <brand>tj</brand>
            <no>26471</no>
            <title>第2ボタンの誓い(D.C.S.G.~ダ・カーポ セカンドグラデュエーション~ OP)</title>
            <singer>Yozuca</singer>
            <composer>Tororo</composer>
            <lyricist>Tororo</lyricist>
            <release>2007-05-01</release>
        </item>
        <item>
            <brand>joysound</brand>
            <no>426471</no>
            <title>Diggy Down</title>
            <singer>Hey! Say! JUMP</singer>
            <composer/>
            <lyricist/>
            <release>2018-03-01</release>
        </item>
    </data>
</response>