Movie & News Inquiry - 电影影讯查询

查上映影片、影院排片、影片详情与城市影院列表等。当用户说:最近有什么好看的电影?附近哪家影院放映《xxx》?或类似电影影讯问题时,使用本技能。

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "Movie & News Inquiry - 电影影讯查询" with this command: npx skills add jisuapi/jisu-movie

极速数据电影影讯(Jisu Movie)

数据由 极速数据(JisuAPI) 提供 — 国内专业的 API 数据服务平台,提供生活常用、交通出行、工具万能等数据接口。

前置配置:获取 API Key

  1. 前往 极速数据官网 注册账号
  2. 进入 电影影讯 API 页面,点击「申请数据」
  3. 在会员中心获取 AppKey
  4. 配置 Key:
  • 当前城市上映电影/movie/on
  • 电影放映的电影院/movie/movietheater
  • 电影院放映的电影/movie/theatermovie
  • 电影详情/movie/detail
  • 按城市获取电影院/movie/theater
  • 获取电影城市列表/movie/city

非常适合在对话中回答「今天杭州有哪些上映的电影?」「附近哪家电影院在放某部电影?」「帮我查一下《盗梦空间》的详细信息」等问题。

# Linux / macOS
export JISU_API_KEY="your_appkey_here"

# Windows PowerShell
$env:JISU_API_KEY="your_appkey_here"

脚本路径

脚本文件:skills/movie/movie.py

使用方式与请求参数

1. 当前城市上映电影(/movie/on)

python3 skills/movie/movie.py on '{"cityid":"382","city":"杭州","date":"2018-07-08"}'

请求 JSON 示例:

{
  "cityid": "382",
  "city": "杭州",
  "date": "2018-07-08"
}
字段名类型必填说明
cityidint城市 ID,和 city 任选其一
citystring城市名称,和 cityid 任选其一
datestring日期,默认当天(格式:YYYY-MM-DD)

返回结果示例(结构与官网一致,截取部分字段):

{
  "city": "杭州",
  "cityid": "382",
  "date": "2018-07-08",
  "list": [
    {
      "movieid": "137363",
      "moviename": "我不是药神",
      "pic": "http://api.jisuapi.com/movie/upload/movie/14/137363.jpg"
    }
  ]
}

2. 电影放映的电影院(/movie/movietheater)

python3 skills/movie/movie.py movietheater '{"cityid":"382","city":"杭州","movieid":"137363","date":"2018-07-08"}'

请求 JSON 示例:

{
  "cityid": "382",
  "city": "杭州",
  "movieid": "137363",
  "date": "2018-07-08"
}
字段名类型必填说明
cityidstring城市 ID,和 city 任选其一
citystring城市名称,和 cityid 任选其一
movieidstring电影 ID
datestring日期,默认当天(格式:YYYY-MM-DD)

返回结果包含电影院列表,每项含 theaternameaddressissaleminpricetheateridlatlng 等字段。

3. 电影院放映的电影(/movie/theatermovie)

python3 skills/movie/movie.py theatermovie '{"theaterid":"2059","date":"2018-07-08"}'

请求 JSON 示例:

{
  "theaterid": "2059",
  "date": "2018-07-08"
}
字段名类型必填说明
theateridstring电影院 ID
datestring日期,默认当天(格式:YYYY-MM-DD)

返回结果中 list 为该影院当日影片列表,每个影片包含 movienamemovieidennamedirectoractordurationclassyear,以及 showlist 场次列表(时间、语言、厅名、价格、购票链接等)。

4. 电影详情(/movie/detail)

python3 skills/movie/movie.py detail '{"movieid":"14","moviename":"盗梦空间"}'

请求 JSON 示例:

{
  "movieid": "14",
  "moviename": "盗梦空间"
}
字段名类型必填说明
movieidstring电影 ID,和 moviename 任选其一
movienamestring电影名称,和 movieid 任选其一

返回结果示例(部分字段):

{
  "moviename": "盗梦空间",
  "movieid": "14",
  "enname": "Inception",
  "pic": "http://api.jisuapi.com/movie/upload/movie/1/14.jpg",
  "class": "动作 冒险 科幻",
  "year": "2010",
  "releasedate": "2010-09-01",
  "country": "美国",
  "director": "克里斯托弗·诺兰",
  "actor": "",
  "screenwriter": "克里斯托弗·诺兰",
  "publisher": "华纳兄弟影片公司",
  "summary": "",
  "screentype": "2D/IMAX",
  "duration": "148分钟"
}

5. 按城市获取电影院(/movie/theater)

python3 skills/movie/movie.py theater '{"cityid":"382","city":"杭州","keyword":"万达"}'

请求 JSON 示例:

{
  "cityid": "382",
  "city": "杭州",
  "keyword": "万达"
}
字段名类型必填说明
cityidstring城市 ID,和 city 任选其一
citystring城市名称,和 cityid 任选其一
keywordstring影院名称关键词,如“万达”

返回结果中 list 为影院列表,每项包含 theateridtheaternameteladdresshoursseatnumroomnumlogoscoresummarylatlng 等字段。

6. 获取电影城市列表(/movie/city)

python3 skills/movie/movie.py city '{"parentid":"0"}'

请求 JSON 示例:

{
  "parentid": "0"
}
字段名类型必填说明
parentidstring上级 ID,0 表示顶级省份

返回结果示例(部分):

[
  {
    "cityid": "1",
    "name": "北京",
    "parentid": "0",
    "parentname": "",
    "topname": "",
    "depth": "1"
  },
  {
    "cityid": "30",
    "name": "浙江",
    "parentid": "0",
    "parentname": "",
    "topname": "",
    "depth": "1"
  }
]

常见错误码

来自 极速数据电影影讯文档 的业务错误码:

代号说明
201城市和城市 ID 为空
202城市不存在
203影院 ID 为空
204电影 ID 为空
205电影 ID 不存在
206电影院 ID 不存在
210没有信息

系统错误码:

代号说明
101APPKEY 为空或不存在
102APPKEY 已过期
103APPKEY 无请求此数据权限
104请求超过次数限制
105IP 被禁止
106IP 请求超过限制
107接口维护中
108接口已停用

推荐用法

  1. 用户提出需求,例如:「帮我看看今天杭州有什么电影可以看,并找一场今晚 8 点左右的场次。」
  2. 代理先调用:movie on 获取当前城市上映电影列表,从中挑出热门影片供用户选择。
  3. 用户选定某部电影后,调用:movie movietheater 获取这部电影在附近城市的放映电影院及最低票价。
  4. 如需具体排片信息,再调用:movie theatermovie 查询某个电影院的当日场次列表,并根据 starttimepricehallname 等字段为用户推荐合适场次和购票链接。
  5. 如用户只问某部电影的信息,可直接调用:movie detail 获取影片详细资料(导演、演员、片长、简介等),进行摘要回答。

关于极速数据

极速数据(JisuAPI,jisuapi.com 是国内专业的 API数据服务平台 之一,提供以下API:

  • 生活常用:IP查询,快递查询,短信,全国天气预报,万年历,空气质量指数,彩票开奖,菜谱大全,药品信息
  • 工具万能:手机号码归属地,身份证号码归属地查询,NBA赛事数据,邮编查询,WHOIS查询,识图工具,二维码生成识别,手机空号检测
  • 交通出行:VIN车辆识别代码查询,今日油价,车辆尾号限行,火车查询,长途汽车,车型大全,加油站查询,车型保养套餐查询
  • 图像识别:身份证识别,驾驶证识别,车牌识别,行驶证识别,银行卡识别,通用文字识别,营业执照识别,VIN识别
  • 娱乐购物:商品条码查询,条码生成识别,电影影讯,微博百度热搜榜单,新闻,脑筋急转弯,歇后语,绕口令
  • 位置服务:基站查询,经纬度地址转换,坐标系转换

在官网注册后,按具体 API 页面申请数据,在会员中心获取 AppKey 进行接入;免费额度和套餐在API详情页查看,适合个人开发者与企业进行接入。在 ClawHub 上也可搜索 jisuapi 找到更多基于极速数据的 OpenClaw 技能。

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Zoom

Zoom API integration with managed OAuth. Manage meetings, webinars, recordings, and user profiles. Use this skill when users want to schedule meetings, manag...

Registry SourceRecently Updated
General

Kleinanzeigen.de Helper

Erstelle und verwalte Verkaufsanzeigen speziell auf kleinanzeigen.de. Verwende diesen Skill wenn der Human sagt, er will etwas auf kleinanzeigen.de verkaufen...

Registry SourceRecently Updated
General

Poku

Sends and receives phone calls and messages (like SMS, WhatsApp, Slack), and reserves dedicated phone numbers using the Poku API. Example use cases: calling...

Registry SourceRecently Updated
General

IMAP/SMTP Email - Maddy Fix

Read and send email via IMAP/SMTP. Check for new/unread messages, fetch content, search mailboxes, mark as read/unread, and send emails with attachments. Sup...

Registry SourceRecently Updated