products
Data license: BookWalker Data Export License · Data source: BookWalker (ZSTD-compressed Database Export)
3 rows where series_id = "CNT_22Q4A3FEANA0"
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_02FWQDMYNSWG | CNT_1RJZ0GN6NKKG | A Misanthrope Teaches a Class for Demi-Humans CNT_22Q4A3FEANA0 | CNT_22Q4A3FEANA0 | 2 | 2 | 1 | Volume 2 | [] | A Misanthrope Teaches a Class for Demi-Humans, Vol. 2 | I'm Rei Hitoma, a self-professed misanthrope thanks to some past trauma. A year has already passed since I started teaching at Shiranui Private High School where demi-human girls learn how to become regular human beings. And now there are three new additions to my class: a dragon, a mouse, and a black cat. But somehow these students are much more troublesome than my previous ones... What will this new school year bring? Can someone like me-someone who hates people-really help these demi-humans realize their wish to become real humans? | 01KGAT1PKRQ827R6FP4FHB2ZYR | 2.0 | 2023-10-30T07:00:00.000Z | Yen On LAB_0TB60FJ75DX0 | GEO_1KB2KYDQ0JGG | A Misanthrope Teaches a Class for Demi-Humans, Vol. 2 | 2024-03-19T00:00:00.000Z | 0 | 0 | ||||||
| PRD_3HVGB779GG6G | CNT_0SR4XDGQT36G | A Misanthrope Teaches a Class for Demi-Humans CNT_22Q4A3FEANA0 | CNT_22Q4A3FEANA0 | 2 | 2 | 1 | Volume 1 | [] | A Misanthrope Teaches a Class for Demi-Humans, Vol. 1 | THESE GIRLS AREN’T HUMAN, BUT THEY ADMIRE HUMANS MORE THAN ANYONE. I’m Rei Hitoma, a self-professed misanthrope thanks to some past trauma. Just when I thought my new teaching job in the mountains would provide a chill, rejuvenating environment, it turns out that this school is actually for demi-humans who want to become full-fledged human beings! There’s a mermaid, a werewolf, a rabbit, and a bird...all of whom are now my charges. It’s my duty to teach them about humankind—and maybe in the process, I’ll learn a few things myself. This isn’t an alternate world or a case of reincarnation. It’s just the story of a teacher at a somewhat peculiar school and his students who are striving to become human. | 01KGB6SMRAAF5D4M05NWRAYB7C | 1.0 | 2023-05-08T07:00:00.000Z | Yen On LAB_0TB60FJ75DX0 | GEO_1KB2KYDQ0JGG | A Misanthrope Teaches a Class for Demi-Humans, Vol. 1 | 2023-10-31T00:00:00.000Z | 0 | 0 | ||||||
| PRD_3SGRENSVAA50 | CNT_3132TW34RJP0 | A Misanthrope Teaches a Class for Demi-Humans CNT_22Q4A3FEANA0 | CNT_22Q4A3FEANA0 | 2 | 2 | 1 | Volume 3 | [] | A Misanthrope Teaches a Class for Demi-Humans, Vol. 3 | THESE GIRLS AREN’T HUMAN, BUT THEY ADMIRE HUMANS MORE THAN ANYONE. I may be a self-professed misanthrope, but after two years of teaching demi-human girls at Shiranui Private High School, my antisocial tendencies are gradually softening. It’s the start of another school year when I begin to turn over a new leaf. My students are Aoi Wakaba, a narcissistic elf, and the airheaded oni Maki Okonogi...but the biggest change is the new teacher, Mirai Haruna, one of my former students and the source of my trauma! This unexpected reunion has thrown me for a loop. Why did Haruna become a teacher? And why at this school of all places? | 01KMZY6GYC30DHXTA5H4ATP6JT | 3.0 | 2025-10-21T07:00:00.000Z | Yen On LAB_0TB60FJ75DX0 | GEO_1KB2KYDQ0JGG | A Misanthrope Teaches a Class for Demi-Humans, Vol. 3 | 2026-04-14T00: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);