products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
4 rows where series_id = "CNT_2RPKQSAC8BYG"
This data as json, CSV (advanced)
Suggested facets: geoblock_id, 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_12A9QJSG5MS0 | CNT_1C2JSYGSYR6G | BLEND-S CNT_2RPKQSAC8BYG | CNT_2RPKQSAC8BYG | 2 | 1 | 1 | Volume 3 | [] | Blend-S, Vol. 3 | It might be winter, but things in the café are getting hotter than ever! There’s something in the air between Kaho and Akizuki, and Mafuyu is getting shockingly close with that customer who asked her out… Is the manager going to be left behind?! Not when he’s making plans for an overnight ski trip and a romantic confession to Maika on the slopes… | 01KG9QFZJYHHRBMJKBFKGE5V1R | 3.0 | 2025-04-07T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1PQM5BDYSMG0 | Blend-S, Vol. 3 | 2025-09-02T07:00:00.000Z | 0 | 0 | ||||||
| PRD_1P45H7DX4DH0 | CNT_1ERDJQ7QJZ20 | BLEND-S CNT_2RPKQSAC8BYG | CNT_2RPKQSAC8BYG | 2 | 1 | 1 | Volume 2 | [] | Blend-S, Vol. 2 | Slowly but surely, Maika has gotten used to playing her sadistic character at the café and is starting to enjoy her first part-time job to the fullest. How could she not, when it comes with perks like trips to the mountains and the beach?! But however close she may have gotten with all her coworkers, Maika hasn’t realized why the manager is cozying up to her! | 01KGBGF7F8TZ8D8B68F5DNG14X | 2.0 | 2024-11-11T08:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1PQM5BDYSMG0 | Blend-S, Vol. 2 | 2025-04-29T07:00:00.000Z | 0 | 0 | ||||||
| PRD_3BV43C4ME6H0 | CNT_19E45G4XS9B0 | BLEND-S CNT_2RPKQSAC8BYG | CNT_2RPKQSAC8BYG | 2 | 1 | 1 | Volume 1 | [] | Blend-S, Vol. 1 | Thanks to a natural glare that could scare off the most hardened hiring manager, high schooler Maika Sakuranomiya can’t seem to land a part-time job. So when opportunity knocks, she jumps at the chance. Waitressing at a cute café with a hot boss— sounds perfect! The manager demanding each waitress adopt a quirky persona? Not a problem. Maika’s all ready to act flirty, hot-and-cold, like a little sister… wait, sadistic? Oh. Um, that might be tough for our cheery and caring heroine! | 01KGBBFH14T4A8MJF0KRWY2XVW | 1.0 | 2024-07-23T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1PQM5BDYSMG0 | Blend-S, Vol. 1 | 2024-12-17T08:00:00.000Z | 0 | 0 | ||||||
| PRD_3NZF1QCXFY10 | CNT_3QCNV5AVDP1G | BLEND-S CNT_2RPKQSAC8BYG | CNT_2RPKQSAC8BYG | 2 | 1 | 1 | Volume 4 | [] | Blend-S, Vol. 4 | New Year’s is here, which means all sorts of new experiences for Maika, like celebrating New Year’s Eve with her cafe coworkers and going bargain hunting. But one thing is certainly not going to change—the manager is surely doomed to another 365 days of embarrassing failed attempts to convey his affections to Maika-chan. Or so one would think! But thanks to a little scheme from Miu-san, the two somehow end up on a date?! | 01KJQ493V0VACPX8E359918ZTX | 4.0 | 2025-09-17T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1GY29CRR8MV0 | Blend-S, Vol. 4 | 2026-03-24T00: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);