NetEase Headlines API
1. Basic Call
TIP
The server will not record any of your requests or steal any of your privacy!
Base API URL
txt
https://zeapi.ink/v1/api/netease
Send a GET request directly to the following URL to retrieve NetEase headlines data:
txt
https://zeapi.ink/v1/api/netease
Shell request code:
shell
curl -X GET https://zeapi.ink/v1/api/netease
2. Request Parameters
This API does not require additional request parameters; simply call it using a GET request.
3. JSON Response Format
Example of a successful response:
json
{
"name": "NetEase News Headlines",
"alias": "news163_toutiao",
"data": [
{
"id": 1,
"title": "Karamay Young Man Rides Motorcycle 3,500 Kilometers to Report for Duty, Enlisted During Freshman Year",
"desc": "Jimu News",
"url": "https://m.163.com/news/article/K8CI2FQC053469LG.html",
"mUrl": "https://m.163.com/news/article/K8CI2FQC053469LG.html"
},
{
"id": 2,
"title": "Azerbaijan President Meets Erdogan in Tianjin, Steps Forward for a Hug",
"desc": "Taiwan Youth",
"url": "https://m.163.com/news/video/VQ7ENI3P9.html",
"mUrl": "https://m.163.com/news/video/VQ7ENI3P9.html"
},
{
"id": 3,
"title": "Zhang Yuning Clashes with Fans, Pulled Away by Foreign Teammate and Staff",
"desc": "Frog Video",
"url": "https://m.163.com/news/video/VH7EIJDI6.html",
"mUrl": "https://m.163.com/news/video/VH7EIJDI6.html"
},
{
"id": 4,
"title": "Summit Scene: Putin Reviews Documents Intently, Modi Strokes Chin in Thought",
"desc": "Little A Sees the World",
"url": "https://m.163.com/news/video/VN7EKOKHC.html",
"mUrl": "https://m.163.com/news/video/VN7EKOKHC.html"
},
{
"id": 5,
"title": "Fan Zhendong's Bundesliga Debut Features Exciting High-Ball Rally, Crowd Cheers Wildly",
"desc": "Daily Fun",
"url": "https://m.163.com/news/video/VG7E8KOKU.html",
"mUrl": "https://m.163.com/news/video/VG7E8KOKU.html"
},
{
"id": 6,
"title": "\"Fastest Female Nurse\" Tearfully Requests Leave for Marathon, Sparks Heated Discussion, Account Comments Disabled",
"desc": "Jimu News",
"url": "https://m.163.com/news/article/K8CJT4U0053469LG.html",
"mUrl": "https://m.163.com/news/article/K8CJT4U0053469LG.html"
},
{
"id": 7,
"title": "Media: Israel Launches Series of Strikes on Houthi Forces, Makes Big Move Before UN General Assembly",
"desc": "Xinmin Weekly",
"url": "https://m.163.com/news/article/K8C1RL390550A0OW.html",
"mUrl": "https://m.163.com/news/article/K8C1RL390550A0OW.html"
},
{
"id": 8,
"title": "Guangxi School Holds New Semester Flag-Raising Ceremony, Four Teachers and Students Stand Solemnly",
"desc": "Taiwan Youth",
"url": "https://m.163.com/news/video/VQ7E7VG6S.html",
"mUrl": "https://m.163.com/news/video/VQ7E7VG6S.html"
},
{
"id": 9,
"title": "Azerbaijan President Meets Pakistan Prime Minister in Tianjin, Both Engage in Warm Conversation",
"desc": "Taiwan Youth",
"url": "https://m.163.com/news/video/VQ7E6UU7P.html",
"mUrl": "https://m.163.com/news/video/VQ7E6UU7P.html"
},
{
"id": 10,
"title": "Wang Chuqin Loses 2-3 to Xu Yingbin in Table Tennis Super League, Smiles Regretfully After Serving Error",
"desc": "Daily Fun",
"url": "https://m.163.com/news/video/VG7ECNRNL.html",
"mUrl": "https://m.163.com/news/video/VG7ECNRNL.html"
}
]
}
Example of an error response (data retrieval failed):
json
{
"error": "Failed to retrieve data"
}
4. Response Field Descriptions
Field | Type | Description |
---|---|---|
name | string | Title, fixed as "NetEase Headlines" |
alias | string | Alias, fixed as "netease" |
data | array | List of headlines, containing multiple entries |
data.id | int | Headline ranking |
data.title | string | Headline keyword |
data.hotScore | int | Raw headline popularity score |
data.url | string | Web link to the headline |
data.hotScoreFormatted | string | Formatted headline popularity (in "ten thousands," rounded to 1 decimal place) |
error | string | Operation result message (returned only on error) |