获取城市的影院列表
POST
/serve
请求参数
Body 参数application/json
service
string
movie
endpoint
string
/api/cinema/list
params
object
必需
cinemaLineId
string
品牌院线 id
cityCode
string
城市编码
date
string
指定日期(2021-01-01)
keywords
string
按关键词搜索“万达影院”
latitude
string
经度
longitude
string
纬度
page
integer <int32>
页码
regionCode
string
区县编码
size
integer <int32>
每页条数
示例
{
"service": "movie",
"endpoint": "/api/cinema/list",
"params": {
"cityCode": "510100",
"page": 1,
"size": 10
}
}
返回响应
🟢200成功
application/json
Body
code
integer
必需
message
string
必需
data
object
必需
list
array[object (CinemaData) {10}]
必需
total
integer
必需
request_id
string
必需
示例
{
"code": 0,
"message": "ok",
"data": {
"list": [
{
"acceptFast": true,
"cinemaAddress": "高新区府城大道505号仁和新城5层528号幸福蓝海国际影城三号门一号电梯",
"cinemaId": "ff8080818795e9f701879834caf002a0",
"cinemaLineId": "20",
"cinemaName": "幸福蓝海国际影城(成都仁和新城IMAX店)",
"cityCode": "510107",
"downPrice": 39.89,
"latitude": 30.587394,
"longitude": 104.052966,
"originPrice": 0
},
{
"acceptFast": true,
"cinemaAddress": "金堂县淮口街道州城大道66号甘御兰广场3楼",
"cinemaId": "ff8080818cab17c2018cdb3647650835",
"cinemaLineId": "0",
"cinemaName": "万达影城(淮口甘御兰广场店)",
"cityCode": "510121",
"downPrice": 28,
"latitude": 30.720472,
"longitude": 104.545514,
"originPrice": 0
}
],
"total": 392
},
"request_id": "01968b54-7634-7209-8787-3914eb97f437"
}