Netease Cloud Music API
3/10/26Less than 1 minute
Public Servers
Warning
Please use public servers with caution for login operations.
We are not responsible for any account theft or other issues caused by using public servers.
| API URL | Location | Provider | Version |
|---|---|---|---|
| https://ncm.zhenxin.me | Shanghai | 真心 | |
| https://zm.i9mr.com | Yangzhou | 墨染云 | |
| https://music.mcseekeri.com | USA | MCSeekeri | |
| https://zm.wwoyun.cn | Ningbo | 蓝钦 |
Warning
If you encounter login issues with self-hosted API.
Please make sure you follow the deployment guide below and change the login method to email login.
Configuration Location
V4
# API settings
[api]
# Netease Cloud Music
netease-link = "https://ncm.zhenxin.me"V2
/// API settings
"api": {
/// Netease Cloud Music API address
///
/// Using open source project NeteaseCloudMusicApi
/// Recommended to self-host, requires Node.js environment
/// Repository: https://github.com/Binaryify/NeteaseCloudMusicApi
"netease": "https://ncm.zhenxin.me"
},Deployment
Before deployment, make sure you have the following environment installed
- Get the code
wget https://registry.npmmirror.com/NeteaseCloudMusicApi/-/NeteaseCloudMusicApi-4.27.0.tgz
tar -xzvf NeteaseCloudMusicApi-4.27.0.tgz
mv package NeteaseCloudMusicApi
cd NeteaseCloudMusicApi- Install dependencies
npm install- Run
node app.js- Custom port
4.1 Linux
PORT=4000 node app.js4.2 Windows
set PORT=4000 && node app.js