K Cinema Bridge
/install k-cinema-bridge
k-cinema-bridge
A JSON API providing Korean multiplex (Lotte Cinema, CGV, Megabox) box office and upcoming movie data, enriched with detailed information such as genre, director, and cast from KOBIS (Korean Film Council). Data is automatically refreshed daily at 00:00 UTC.
API Reference
- Base URL:
https://uyeong.github.io/k-cinema-bridge - All endpoints are accessible via
GETrequests without authentication. - The
infofield may benull, so always perform anullcheck before accessing it.
| Endpoint | Description |
|---|---|
| GET /api/boxoffice.json | Combined box office from all sources ({lotte, cgv, megabox}) |
| GET /api/boxoffice/{source}.json | Box office by source (BoxOfficeMovie[]) |
| GET /api/upcoming.json | Combined upcoming movies from all sources ({lotte, cgv, megabox}) |
| GET /api/upcoming/{source}.json | Upcoming movies by source (UpcomingMovie[]) |
Valid source values: lotte, cgv, megabox
Data Models
BoxOfficeMovie
source: "lotte" | "cgv" | "megabox"
rank: number -- Box office rank (starting from 1)
title: string -- Movie title
rating: string -- Audience rating
posterUrl: string -- Poster image URL
info?: MovieInfo -- KOBIS detailed info (may be null)
UpcomingMovie
source: "lotte" | "cgv" | "megabox"
title: string -- Movie title
rating: string -- Audience rating
posterUrl: string -- Poster image URL
releaseDate: string -- Release date (YYYY-MM-DD, may be an empty string)
info?: MovieInfo -- KOBIS detailed info (may be null)
MovieInfo
code, title, englishTitle, originalTitle: string
runtime: string (minutes)
productionYear, openDate (YYYYMMDD), productionStatus, type: string
nations: string[] -- Production countries
genres: string[]
directors: {name, englishName}[]
actors: {name, englishName, role, roleEnglish}[]
showTypes: {group, name}[]
companies: {code, name, englishName, part}[]
audits: {number, grade}[]
staff: {name, englishName, role}[]
Instructions
Recommending Popular Movies
When the user asks for movie recommendations or what's popular:
- Fetch
GET {BASE_URL}/api/boxoffice.jsonto retrieve combined box office data from all sources. - Identify movies that appear across multiple sources with low rank values — lower rank means higher popularity.
- Present the top-ranked movies with their title, rating, and genre from
info.genresif available.
Announcing Upcoming Releases
When the user asks about upcoming or soon-to-be-released movies:
- Fetch
GET {BASE_URL}/api/upcoming.jsonto retrieve combined upcoming movie data. - Filter results by
releaseDate(YYYY-MM-DD) to match the user's requested time range. - Provide details such as genre, directors, and actors from the
infofield if available.
Searching by Genre, Director, or Actor
When the user asks about a specific genre, director, or actor:
- Fetch both
GET {BASE_URL}/api/boxoffice.jsonandGET {BASE_URL}/api/upcoming.json. - Filter results using the
infofield:- Genre: match against
info.genres - Director: match against
info.directors[].name - Actor: match against
info.actors[].name
- Genre: match against
- Always null-check the
infofield before accessing nested properties.
Filtering by Audience Rating
When the user asks for age-appropriate movies:
- Use the
ratingfield to filter. This field is always present and does not require theinfofield. - Known rating values: "전체 관람가" (All ages), "12세 관람가" (12+), "15세 관람가" (15+), "청소년 관람불가" (Adults only).
Querying a Specific Multiplex
When the user asks about a specific cinema chain:
- Fetch
GET {BASE_URL}/api/boxoffice/{source}.jsonorGET {BASE_URL}/api/upcoming/{source}.json. - Valid source values:
lotte,cgv,megabox.
Comparing Across Multiplexes
When the user asks to compare rankings between cinema chains:
- Fetch
GET {BASE_URL}/api/boxoffice.jsonto retrieve combined data. - Find movies with the same
titleacross different sources and compare theirrankvalues.
Response Guidelines
- Respond in the same language the user is using.
- When presenting movie lists, include title, rank or release date, rating, and genre when available.
- If
infoisnullfor a movie, present only the base fields (title, rank, rating, posterUrl) without guessing missing details. - When comparing across multiplexes, use a table format for clarity.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install k-cinema-bridge - 安装完成后,直接呼叫该 Skill 的名称或使用
/k-cinema-bridge触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
K Cinema Bridge 是什么?
Query Korean multiplex (Lotte Cinema, CGV, Megabox) box office rankings and upcoming movie data enriched with KOBIS details. Use when the user asks about Korean movies currently showing, box office rankings, upcoming releases, or wants movie recommendations based on genre, director, actor, or rating. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 1112 次。
如何安装 K Cinema Bridge?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install k-cinema-bridge」即可一键安装,无需额外配置。
K Cinema Bridge 是免费的吗?
是的,K Cinema Bridge 完全免费(开源免费),可自由下载、安装和使用。
K Cinema Bridge 支持哪些平台?
K Cinema Bridge 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 K Cinema Bridge?
由 U-Yeong Ju(@uyeong)开发并维护,当前版本 v0.1.1。