娱乐·电影实时票房
热播电影实时票房

接口地址: https://58.linkpc.net/doc/movie.html

返回格式: JSON

请求方式: GET

请求示例: https://58.linkpc.net/api/movie?type=json

请求参数说明:

名称 必填 类型 说明
type string 返回格式默认JSON可选text

返回参数说明:

名称 类型 说明

返回示例:

{
"code": 200,
"msg": "成功",
"data": {
"list": [
{
"boxDesc": "787.71",
"boxRate": "55.6%",
"movieInfo": {
"movieId": 1469858,
"movieName": "不说话的爱",
"releaseInfo": "上映首日"
},
"seatCountRate": "16.8%",
"showCountRate": "16.0%",
"sumBoxDesc": "1243.7万"
},
{
"boxDesc": "237.25",
"boxRate": "16.7%",
"movieInfo": {
"movieId": 1439161,
"movieName": "热烈",
"releaseInfo": ""
},
"seatCountRate": "2.4%",
"showCountRate": "2.4%",
"sumBoxDesc": "9.15亿"
},
{
"boxDesc": "203.82",
"boxRate": "14.3%",
"movieInfo": {
"movieId": 1294273,
"movieName": "哪吒之魔童闹海",
"releaseInfo": "上映65天"
},
"seatCountRate": "31.3%",
"showCountRate": "25.4%",
"sumBoxDesc": "150.87亿"
},
{
"boxDesc": "39.05",
"boxRate": "2.7%",
"movieInfo": {
"movieId": 1283728,
"movieName": "制暴:无限杀机",
"releaseInfo": "上映7天"
},
"seatCountRate": "12.6%",
"showCountRate": "12.7%",
"sumBoxDesc": "3351.7万"
},
{
"boxDesc": "30.39",
"boxRate": "2.1%",
"movieInfo": {
"movieId": 1492100,
"movieName": "唐探1900",
"releaseInfo": "上映65天"
},
"seatCountRate": "6.4%",
"showCountRate": "7.4%",
"sumBoxDesc": "35.67亿"
},
{
"boxDesc": "27.05",
"boxRate": "1.9%",
"movieInfo": {
"movieId": 1229756,
"movieName": "怒水西流",
"releaseInfo": "上映13天"
},
"seatCountRate": "10.2%",
"showCountRate": "11.7%",
"sumBoxDesc": "4524.0万"
},
{
"boxDesc": "12.44",
"boxRate": "0.8%",
"movieInfo": {
"movieId": 5430,
"movieName": "倩女幽魂",
"releaseInfo": ""
},
"seatCountRate": "3.2%",
"showCountRate": "4.0%",
"sumBoxDesc": "2127.0万"
},
{
"boxDesc": "10.05",
"boxRate": "0.7%",
"movieInfo": {
"movieId": 1547192,
"movieName": "机动战士高达:跨时之战",
"releaseInfo": "点映"
},
"seatCountRate": "<0.1%",
"showCountRate": "<0.1%",
"sumBoxDesc": "21.3万"
},
{
"boxDesc": "9.60",
"boxRate": "0.6%",
"movieInfo": {
"movieId": 1514880,
"movieName": "还有明天",
"releaseInfo": "上映27天"
},
"seatCountRate": "1.2%",
"showCountRate": "1.5%",
"sumBoxDesc": "4249.8万"
},
{
"boxDesc": "8.45",
"boxRate": "0.5%",
"movieInfo": {
"movieId": 1491086,
"movieName": "我会好好的",
"releaseInfo": "上映13天"
},
"seatCountRate": "4.1%",
"showCountRate": "4.9%",
"sumBoxDesc": "2439.4万"
}
],
"nationalBox": {
"num": "1415.9",
"unit": "万"
},
"updateInfo": {
"date": "2025.04.03",
"time": "11:54:03",
"updateGapSecond": 3,
"updateTimestamp": 1743652443941
}
}
}

错误码格式说明:

名称 类型 说明

代码示例:

<?php
header('Content-type: application/json; charset=utf-8');
date_default_timezone_set('PRC');
$url = 'https://58.linkpc.net/api/movie';
$type = isset($_GET['type']) ? $_GET['type'] : '';
if ($type == 'json' || $type == 'JSON') {
$result = file_get_contents($url . '?type=json');
echo htmlspecialchars($result);
} else {
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
$contentType = curl_getinfo($ch, CURLINFO_CONTENT_TYPE);
curl_close($ch);