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

接口地址: 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": "33767.56",
"boxRate": "86.1%",
"movieInfo": {
"movieId": 1294273,
"movieName": "哪吒之魔童闹海",
"releaseInfo": "上映26天"
},
"seatCountRate": "68.8%",
"showCountRate": "59.4%",
"sumBoxDesc": "135.62亿"
},
{
"boxDesc": "2444.60",
"boxRate": "6.2%",
"movieInfo": {
"movieId": 1492100,
"movieName": "唐探1900",
"releaseInfo": "上映26天"
},
"seatCountRate": "10.7%",
"showCountRate": "13.6%",
"sumBoxDesc": "33.44亿"
},
{
"boxDesc": "1010.45",
"boxRate": "2.5%",
"movieInfo": {
"movieId": 1529787,
"movieName": "熊出没·重启未来",
"releaseInfo": "上映26天"
},
"seatCountRate": "4.6%",
"showCountRate": "6.0%",
"sumBoxDesc": "7.64亿"
},
{
"boxDesc": "355.07",
"boxRate": "0.9%",
"movieInfo": {
"movieId": 1245203,
"movieName": "封神第二部:战火西岐",
"releaseInfo": "上映26天"
},
"seatCountRate": "2.3%",
"showCountRate": "3.3%",
"sumBoxDesc": "11.82亿"
},
{
"boxDesc": "348.86",
"boxRate": "0.8%",
"movieInfo": {
"movieId": 1407228,
"movieName": "诡才之道",
"releaseInfo": "上映2天"
},
"seatCountRate": "3.1%",
"showCountRate": "4.2%",
"sumBoxDesc": "1100.3万"
},
{
"boxDesc": "321.21",
"boxRate": "0.8%",
"movieInfo": {
"movieId": 1490902,
"movieName": "射雕英雄传:侠之大者",
"releaseInfo": "上映26天"
},
"seatCountRate": "1.0%",
"showCountRate": "1.4%",
"sumBoxDesc": "6.59亿"
},
{
"boxDesc": "269.99",
"boxRate": "0.6%",
"movieInfo": {
"movieId": 1427283,
"movieName": "美国队长4",
"releaseInfo": "上映10天"
},
"seatCountRate": "2.3%",
"showCountRate": "3.0%",
"sumBoxDesc": "9782.4万"
},
{
"boxDesc": "263.13",
"boxRate": "0.6%",
"movieInfo": {
"movieId": 1488604,
"movieName": "你的颜色",
"releaseInfo": "上映3天"
},
"seatCountRate": "3.6%",
"showCountRate": "4.7%",
"sumBoxDesc": "1256.6万"
},
{
"boxDesc": "205.90",
"boxRate": "0.5%",
"movieInfo": {
"movieId": 685,
"movieName": "花样年华",
"releaseInfo": "上映10天"
},
"seatCountRate": "1.5%",
"showCountRate": "2.0%",
"sumBoxDesc": "5074.1万"
},
{
"boxDesc": "77.51",
"boxRate": "0.1%",
"movieInfo": {
"movieId": 1551329,
"movieName": "您的声音",
"releaseInfo": "上映6天"
},
"seatCountRate": "1.4%",
"showCountRate": "1.6%",
"sumBoxDesc": "2441.3万"
}
],
"nationalBox": {
"num": "39202.5",
"unit": "万"
},
"updateInfo": {
"date": "2025.02.23",
"time": "19:49:33",
"updateGapSecond": 3,
"updateTimestamp": 1740311373093
}
}
}

错误码格式说明:

名称 类型 说明

代码示例:

<?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);