products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
3 rows where series_id = "CNT_0ZSQAC5FC2PG"
This data as json, CSV (advanced)
Suggested facets: listed_at (date), on_sale_at (date)
| id ▼ | content_id | series_id | parent_content_id | level | content_type | product_type | title | alt_titles | subtitle | display_title | display_title_short | description | description_short | image_id | display_order | listed_at | label_id | geoblock_id | display_name | copyright | on_presale_at | on_sale_at | off_sale_at | add_on | add_on_campaign_only |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| PRD_0GKY1BMA0D70 | CNT_1SK8R5H1XPF0 | I'm the Heroic Knight of an Intergalactic Empire! CNT_0ZSQAC5FC2PG | CNT_0ZSQAC5FC2PG | 2 | 1 | 1 | Volume 2 | [] | I'm the Heroic Knight of an Intergalactic Empire! Vol. 2 | Rookie knight Emma has been branded incompetent and shipped off to the frontier. But none of her superiors realized that pirates are hiding out in these remote areas. She handled the first wave, but now an enemy aircraft is approaching, and the only person answering Emma's call for reinforcements is her old instructor, Claudia. This is the very same instructor who failed Emma turning training. Will this battle be the chance she needs to prove herself to her old mentor? | IT'S A PIRATE HUNTER'S LIFE FOR ME | 01KH2TWQKNYFD37MMWY5DBNDWX | 2.0 | 2025-11-28T08:00:00.000Z | Seven Seas Entertainment LAB_1WABW2X3770G | GEO_1PKAG51AEAQG | I'm the Heroic Knight of an Intergalactic Empire! Vol. 2 | © 2024 Ju Ishiguchi, Yomu Mishima, Nadare Takamine | 2026-02-03T08:00:00.000Z | 0 | 0 | ||||
| PRD_0V53E00BV8RG | CNT_3BNV5Q37QPF0 | I'm the Heroic Knight of an Intergalactic Empire! CNT_0ZSQAC5FC2PG | CNT_0ZSQAC5FC2PG | 2 | 1 | 1 | Volume 1 | [] | I'm the Heroic Knight of an Intergalactic Empire! Vol. 1 | Ever since she saw Count Banfield valiantly protect her home planet from space pirates, Emma Rodman has wanted to be a knight. She'd gladly give her life defending the innocent and protecting her lord's domain. Unfortunately, her final test at the knights' academy has earned her a D-ranking, the lowest of the low! What a disaster! Now she's relegated to a remote border planet and her squad are a bunch of useless layabouts. Should she call it quits? Or will this isolation give her room to grow and shine? | The exciting manga--based off the light novel, also available from Seven Seas--in the same universe as the hit series I'm the Evil Lord of an Intergalactic Empire! (By the author of Trapped in a Dating Sim.) | 01KGBV93A2NY6PQR2QBN87PG3R | 1.0 | 2025-08-12T07:00:00.000Z | Seven Seas Entertainment LAB_1WABW2X3770G | GEO_1PKAG51AEAQG | I'm the Heroic Knight of an Intergalactic Empire! Vol. 1 | © 2023 Ju Ishiguchi, Yomu Mishima, Nadare Takamine | 2025-10-07T07:00:00.000Z | 0 | 0 | ||||
| PRD_3K62C019PKXG | CNT_34DY69HSJ7F0 | I'm the Heroic Knight of an Intergalactic Empire! CNT_0ZSQAC5FC2PG | CNT_0ZSQAC5FC2PG | 2 | 1 | 1 | Volume 3 | [] | I'm the Heroic Knight of an Intergalactic Empire! Vol. 3 | Emma has successfully used the prototype Atalanta to fight off a group of space pirates, but both mobile knight and pilot need more testing. Emma's training session is cut short when she's attacked by a mysterious mobile knight. Just when her machine and her confidence are completely destroyed, the pilot gives her the mocking title "Knight of Justice." Full of spite and determination, Emma is now determined to turn that dismissive nickname into something celebrated throughout the empire! | DOWN AND DESTROYED, BUT NOT OUT | 01KRZ24806DPBSQG91Q9MSVDD7 | 3.0 | 2026-05-19T02:44:12.000Z | Seven Seas Entertainment LAB_1WABW2X3770G | GEO_1PKAG51AEAQG | I'm the Heroic Knight of an Intergalactic Empire! Vol. 3 | © 2025 Ju Ishiguchi, Yomu Mishima, Nadare Takamine | 2026-06-16T07:00:00.000Z | 0 | 0 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE products (
id TEXT PRIMARY KEY,
content_id TEXT NOT NULL,
series_id TEXT NOT NULL,
parent_content_id TEXT,
level INTEGER NOT NULL,
content_type INTEGER NOT NULL,
product_type INTEGER NOT NULL,
title TEXT NOT NULL,
alt_titles TEXT NOT NULL,
subtitle TEXT NOT NULL,
display_title TEXT NOT NULL,
display_title_short TEXT NOT NULL,
description TEXT NOT NULL,
description_short TEXT NOT NULL,
image_id TEXT NOT NULL,
display_order REAL NOT NULL,
listed_at TEXT NOT NULL,
label_id TEXT NOT NULL,
geoblock_id TEXT,
display_name TEXT NOT NULL,
copyright TEXT,
on_presale_at TEXT,
on_sale_at TEXT NOT NULL,
off_sale_at TEXT,
add_on INTEGER NOT NULL,
add_on_campaign_only INTEGER NOT NULL,
FOREIGN KEY (series_id) REFERENCES series(id),
FOREIGN KEY (label_id) REFERENCES labels(id),
FOREIGN KEY (geoblock_id) REFERENCES geoblocks(id)
);
CREATE INDEX idx_products_content ON products(content_id);
CREATE INDEX idx_products_series ON products(series_id);
CREATE INDEX idx_products_label ON products(label_id);
CREATE INDEX idx_products_geoblock ON products(geoblock_id);
CREATE INDEX idx_products_image ON products(image_id);