products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
3 rows where series_id = "CNT_2W3BB7866410"
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_0B5PFFASF1AG | CNT_0H0E6MBTJ1C0 | It's All Your Fault CNT_2W3BB7866410 | CNT_2W3BB7866410 | 2 | 1 | 1 | Volume 2 | [] | It's All Your Fault, Vol. 2 | Shiho, with newfound online popularity and a photo collection to sell at Comiket in the works, finally feels like her cosplay career is starting to take off. But amid all the likes, shares, and praise is a single anonymous hater—who turns out to be a fellow member of the SM Society, Moeka Toudou! Not only is she clearly jealous as all get-out, but she also has the nerve to drag cosplay for being “unoriginal”! Shiho can’t wait to give the girl a piece of her mind, until she discovers something that puts Moeka’s behavior into perspective… | 01KG9QABE6KZS9N02WNE0YHNJ8 | 2.0 | 2025-03-06T08:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1PKAG51AEAQG | It's All Your Fault, Vol. 2 | 2025-09-09T07:00:00.000Z | 0 | 0 | ||||||
| PRD_1T4QT1Z2DYGG | CNT_0Q2CBE5ZJ5H0 | It's All Your Fault CNT_2W3BB7866410 | CNT_2W3BB7866410 | 2 | 1 | 1 | Volume 3 | [] | It's All Your Fault, Vol. 3 | Summer Comiket is finally over, but Shiho doesn’t have time for a breather—before she can even leave the venue, she’s abducted by Aila, the seamstress of the SM Society who brings their many outfits to life. Aila is determined to make Shiho shine in their college’s beauty pageant, which is being judged this year by the most volatile group of all: the social media masses! But Shiho has her work cut out for her, as Kanon and Moeka plan to throw their hats in the ring too. With the stakes high for the three rising stars, who will sparkle the brightest on the virtual stage? | 01KJQ423S8TBHCFRJQQCFCK76N | 3.0 | 2025-09-17T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1GPSER10N8P0 | It's All Your Fault, Vol. 3 | 2026-03-24T00:00:00.000Z | 0 | 0 | ||||||
| PRD_379TT24RY3C0 | CNT_3VB1PDB3YNY0 | It's All Your Fault CNT_2W3BB7866410 | CNT_2W3BB7866410 | 2 | 1 | 1 | Volume 1 | [] | It's All Your Fault, Vol. 1 | Shiho Kumai is a broke college student and hardcore otaku who lives for cosplay, but she just can’t find a way to share her passion with the world. Enter Yotogi: a fellow cosplayer who loves the hobby just as much as she does, adores the same anime, and (to top it all off) has over 200,000 followers on social media! It’s a match made in heaven for Shiho…until she finds out Yotogi is one of those cosplayers—a person who disregards the source material to be extra risqué! They make a great pair, but can the two move past their differences in costume philosophy to become real cosplay superstars?! | 01KGBD4SJZDDT76A8T3R1XEF23 | 1.0 | 2024-09-26T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1PKAG51AEAQG | It's All Your Fault, Vol. 1 | 2025-03-25T07: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);