products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
4 rows where series_id = "CNT_0P49E8V1VA0G"
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_01XESHKY0XT0 | CNT_2C11B2YPJACG | Sasaki and Peeps CNT_0P49E8V1VA0G | CNT_0P49E8V1VA0G | 2 | 1 | 1 | Volume 1 | [] | Sasaki and Peeps, Vol. 1 | When Sasaki brightens up his tired corporate life by buying a pet sparrow, he never imagined the bird would actually be a reincarnated sage from another world! With his new avian roommate teaching him all sorts of magic tricks, could this be Sasaki’s chance to escape his droll office job? | 01KGAK2GY83BMEJYBDZQ46J8BW | 1.0 | 2022-09-28T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1KB2KYDQ0JGG | Sasaki and Peeps, Vol. 1 | 2022-10-18T00:00:00.000Z | 0 | 0 | ||||||
| PRD_25A596JXG2C0 | CNT_2N1A94NPA680 | Sasaki and Peeps CNT_0P49E8V1VA0G | CNT_0P49E8V1VA0G | 2 | 1 | 1 | Volume 3 | [] | Sasaki and Peeps, Vol. 3 | In the brief moments after his psychic battle with the black-haired beauty who wears traditional Japanese clothes, a trash-rummaging magical girl shows up and the next-door middle schooler’s yandere tendencies get worse—such peculiar girls are steadily gathering around Sasaki...! Why is all this happening when he just wants to learn to teleport to work and feed his bird good food...?! | 01KGBC8AXMBYQM4Z4WGRN5FWZ0 | 3.0 | 2024-08-14T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1KB2KYDQ0JGG | Sasaki and Peeps, Vol. 3 | 2025-01-21T00:00:00.000Z | 0 | 0 | ||||||
| PRD_2S0QPCFNMB40 | CNT_2X7GYV879KQ0 | Sasaki and Peeps CNT_0P49E8V1VA0G | CNT_0P49E8V1VA0G | 2 | 1 | 1 | Volume 4 | [] | Sasaki and Peeps, Vol. 4 | THE GRAND ADVENTURES OF A MAN AND HIS BIRD— DIMENSION HOPPING BETWEEN WORLDS! All right! That’s everything on the list—procured and stocked in the warehouse for Viscount Müller. What’s a wartime purveyor meant to do now, Peeps?I suppose we shall wait and see how the war unfolds. Until the viscount requires our services again, let us take this opportunity to reacquaint ourselves with French’s fine cuisine! You’re right—there’s nothing like a good meal after a job well done. And this’ll be the perfect time to wrap up some loose ends back home. I wonder if I’ll run into that dumpster-diving girl again… | 01KGC0YJA60QKAX5QH1V537E61 | 4.0 | 2025-10-21T07:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1KB2KYDQ0JGG | Sasaki and Peeps, Vol. 4 | 2025-12-30T00:00:00.000Z | 0 | 0 | ||||||
| PRD_3DCZZJA05Q3G | CNT_01TP7FXH043G | Sasaki and Peeps CNT_0P49E8V1VA0G | CNT_0P49E8V1VA0G | 2 | 1 | 1 | Volume 2 | [] | Sasaki and Peeps, Vol. 2 | THE GRAND ADVENTURES OF A MAN AND HIS BIRD—DIMENSION HOPPING BETWEEN WORLDS! "...How did I end up working for a secret government department that essentially functions as a psychic police force?! I only wanted to save that woman from a thug... Peeps, didn’t you say there’s no magic here?" "I did. But perhaps this world possesses something similar to magic that operates under a different set of rules." "Haah...I wish I could just focus on eating French’s food and learning teleportation magic and doing business with the Hermann Trading Company. At least the other world seems pretty peaceful—right?" | 01KGB4GAFG16KPE876PYVG6HX5 | 2.0 | 2023-02-07T08:00:00.000Z | Yen Press LAB_0MPN6X9X3ADG | GEO_1KB2KYDQ0JGG | Sasaki and Peeps, Vol. 2 | 2023-05-23T00: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);