- App/H5对接流程:
- API开放接口对接流程
- 小程序对接流程v1.1
- 数据推送说明
- 基础信息
- 电影票接口
- 卡券接口
- 点餐接口
获取电影的影院列表
GET
/api/movie/movie_cinemas
Movie
请求参数
Query 参数
cityId
string
城市id
movieId
string
必需
day
string
放映日期
districtId
string
忽略
brandId
string
忽略
lat
number
经纬度
lng
number
经纬度
返回响应
🟢200Success
application/json
Body
code
integer <int32>
code
message
string | null
message
data
object (TicketMovieCinemas)
电影的影院列表
cinemas
array[object (TicketCinema) {19}] | null
影院列表
cinemaCount
string | null
影院数量
showDates
array[string] | null
有排片的日期集合
sort
integer <int32>
可选
sortNames
string | null
可选
sourceId
string | null
票源id
示例
{
"code": 0,
"message": "string",
"data": {
"cinemas": [
{
"dis": "string",
"distance": 0,
"lat": 0,
"lng": 0,
"halls": [
"string"
],
"showInfo": "string",
"cinemaId": "string",
"cinemaCode": "string",
"cityId": "string",
"cityName": "string",
"districtId": "string",
"name": "string",
"address": "string",
"phone": "string",
"sellPrice": "string",
"originPrice": 0,
"maxDiscount": 0,
"cinemaLine": true,
"areaName": "string"
}
],
"cinemaCount": "string",
"showDates": [
"string"
],
"sort": 0,
"sortNames": "string",
"sourceId": "string"
}
}