← 返回
数据分析 中文

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.
查询韩国影院(CGV、乐天影城、Megabox)票房排行及即将上映影片,附带KOBIS详细信息。适用于询问韩国当前上映电影、票房排名、新片上映或基于类型、导演、演员、评分的电影推荐。
uyeong
数据分析 clawhub v0.1.1 1 版本 99726.8 Key: 无需
★ 2
Stars
📥 1,420
下载
💾 53
安装
1
版本
#latest

概述

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 GET requests without authentication.
  • The info field may be null, so always perform a null check before accessing it.
EndpointDescription
------
GET /api/boxoffice.jsonCombined box office from all sources ({lotte, cgv, megabox})
GET /api/boxoffice/{source}.jsonBox office by source (BoxOfficeMovie[])
GET /api/upcoming.jsonCombined upcoming movies from all sources ({lotte, cgv, megabox})
GET /api/upcoming/{source}.jsonUpcoming 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:

  1. Fetch GET {BASE_URL}/api/boxoffice.json to retrieve combined box office data from all sources.
  2. Identify movies that appear across multiple sources with low rank values — lower rank means higher popularity.
  3. Present the top-ranked movies with their title, rating, and genre from info.genres if available.

Announcing Upcoming Releases

When the user asks about upcoming or soon-to-be-released movies:

  1. Fetch GET {BASE_URL}/api/upcoming.json to retrieve combined upcoming movie data.
  2. Filter results by releaseDate (YYYY-MM-DD) to match the user's requested time range.
  3. Provide details such as genre, directors, and actors from the info field if available.

Searching by Genre, Director, or Actor

When the user asks about a specific genre, director, or actor:

  1. Fetch both GET {BASE_URL}/api/boxoffice.json and GET {BASE_URL}/api/upcoming.json.
  2. Filter results using the info field:
    • Genre: match against info.genres
    • Director: match against info.directors[].name
    • Actor: match against info.actors[].name
  3. Always null-check the info field before accessing nested properties.

Filtering by Audience Rating

When the user asks for age-appropriate movies:

  1. Use the rating field to filter. This field is always present and does not require the info field.
  2. Known rating values: "전체 관람가" (All ages), "12세 관람가" (12+), "15세 관람가" (15+), "청소년 관람불가" (Adults only).

Querying a Specific Multiplex

When the user asks about a specific cinema chain:

  1. Fetch GET {BASE_URL}/api/boxoffice/{source}.json or GET {BASE_URL}/api/upcoming/{source}.json.
  2. Valid source values: lotte, cgv, megabox.

Comparing Across Multiplexes

When the user asks to compare rankings between cinema chains:

  1. Fetch GET {BASE_URL}/api/boxoffice.json to retrieve combined data.
  2. Find movies with the same title across different sources and compare their rank values.

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 info is null for 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.

版本历史

共 1 个版本

  • v0.1.1 当前
    2026-03-28 23:21 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

data-analysis

Excel / XLSX

ivangdavila
创建、检查和编辑 Microsoft Excel 工作簿及 XLSX 文件,支持可靠的公式、日期、类型、格式、重算及模板保留功能。
★ 367 📥 140,079
data-analysis

Data Analysis

ivangdavila
{"answer":"数据分析与可视化。查询数据库、生成报告、自动化电子表格,将原始数据转化为清晰可行的见解。适用于:(1) 您……"}
★ 198 📥 64,918
content-creation

Instagram Content Studio

uyeong
管理Instagram账号。查看个人资料,列出帖子,发布图片/轮播,发布视频/Reels,读写评论。当用户请求...时使用。
★ 2 📥 2,095