Skip to content

Instantly share code, notes, and snippets.

@CannoHarito
Last active October 2, 2019 08:16
Show Gist options
  • Save CannoHarito/9d3589b838e709966631b07b049a13f3 to your computer and use it in GitHub Desktop.
Save CannoHarito/9d3589b838e709966631b07b049a13f3 to your computer and use it in GitHub Desktop.
Google Books APIをfetchして表示するデモ。ついでにブクログ(booklog.jp)のアイテムページのリンクも付けた。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Books APIを叩いてみる</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@ajusa/lit@latest/dist/lit.css" />
<style>
h4,
p {
margin: 0;
}
a.btn {
display: inline-block;
}
#list>div.row {
border-bottom: 1px solid;
}
#message {
position: fixed;
bottom: 0;
text-align: center;
}
.fadeout {
opacity: 1;
transition-property: opacity;
transition-duration: 2s;
transition-delay: 4s;
}
</style>
</head>
<body>
<div class="c">
<form onsubmit="search(this.q.value);this.reset();return false;">
<input name="q" class="card w-100" type="search" placeholder="ISBN or 検索ワード">
<!-- <input class="btn primary" type="submit" value="Search"> -->
</form>
<div id="list">
</div>
</div>
<div id="message" class="w-100"></div>
<script src="./main.js"></script>
</body>
</html>
const URL = 'https://www.googleapis.com/books/v1/volumes?q=';
const $ = (selector) => document.querySelector(selector);
let list = [];
const search = (query) => {
if (!query) return;
if (list.includes(query)) return error('すでに検索済みです');
else list.push(query);
if (/^97[89]\d{10}$/.test(query)) {
query = 'isbn:' + query;
}
// console.log(query);
fetch(URL + query, { mode: 'cors' })
.then(response => response.json())
.then(json => addList(query, json));
};
const addList = (query, json) => {
// console.dir(json);
const $list = $('#list');
if (json.totalItems === undefined) { console.dir(json); throw new Error('json has no totalItems'); };
if (json.totalItems === 0) return error(`"${query}"の検索結果:0件`);
// $list.innerHTML += json.items.map(item => itemToHtml(item.volumeInfo)).join('');
// json.items.reverse().forEach(item => $list.insertBefore(itemToDom(item.volumeInfo), $list.firstChild));
json.items.reverse().forEach(item => $list.insertAdjacentHTML('afterbegin', itemToHtml(item.volumeInfo)));
};
const itemToHtml = (info) => {
const image = (info.imageLinks && info.imageLinks.smallThumbnail)
? `<div class="2 col"><img src="${info.imageLinks.smallThumbnail}" class=w-100></div>`
: `<div class="2 col card">No Image</div>`;
const link = booklogLink(info.industryIdentifiers);
return `
<div class="row">
${image}
<div class=col style=vertical-align:top>
<h4>${info.title + (info.subtitle ? ` (${info.subtitle})` : '')}</h4>
<p>${Array.isArray(info.authors) ? info.authors.join(',') : ''}</p>
<p>${info.publishedDate}</p>
${link && `<p style=text-align:right><a class=btn href="${link}" target=_blank>本棚登録</a></p>`}
</div>
</div>`;
};
const booklogLink = (ids) => {
if (!Array.isArray(ids)) return '';
const booklogURL = 'https://booklog.jp/item/1/';
const isbn10 = ids.find(obj => obj.type == 'ISBN_10');
if (isbn10) return booklogURL + isbn10.identifier;
const isbn13 = ids.find(obj => obj.type == 'ISBN_13');
if (isbn13) return booklogURL + isbn13ToAsin(isbn13.identifier);
return '';
};
const isbn13ToAsin = (isbn13) => {//実装してください
return '';
};
const error = (message) => {
const $message = $('#message');
const $button = document.createElement('button');
$button.textContent = message;
$button.classList.add('btn', 'primary', 'w-100', 'fadeout');
$message.appendChild($button);
setTimeout(() => $button.style.opacity = '0', 30);
setTimeout(() => $message.removeChild($button), 7000);
};
{
"kind": "books#volumes",
"totalItems": 1,
"items": [
{
"kind": "books#volume",
"id": "2GyQQgAACAAJ",
"etag": "c03GhM/v/yU",
"selfLink": "https://www.googleapis.com/books/v1/volumes/2GyQQgAACAAJ",
"volumeInfo": {
"title": "ジョナサンと宇宙クジラ",
"subtitle": "ハヤカワ名作セレクション",
"authors": [
"ロバート・フランクリンヤング"
],
"publishedDate": "2006-10",
"description": "さわやかな9月の風のなかを空飛ぶフライパンに乗って、宇宙クジラが棲む遙かな銀河へ、巨人族が暮らす深い海の洞へと、冒険の旅に出かけてみませんか?それとも、辺境惑星一帯を爆笑の渦に巻きこんだ「愛しのメアリ・ルー」を上演中の宇宙船劇場のほうがよいですか?アメリカSF界でブラッドベリ、スタージョンと並び称される詩人ロバート・F・ヤングが、愛に渇き、倦怠に沈むあなたに贈る、心温まる珠玉の名品集。",
"industryIdentifiers": [
{
"type": "ISBN_10",
"identifier": "4150115842"
},
{
"type": "ISBN_13",
"identifier": "9784150115845"
}
],
"readingModes": {
"text": false,
"image": false
},
"pageCount": 413,
"printType": "BOOK",
"averageRating": 4.0,
"ratingsCount": 1,
"maturityRating": "NOT_MATURE",
"allowAnonLogging": false,
"contentVersion": "preview-1.0.0",
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=2GyQQgAACAAJ&printsec=frontcover&img=1&zoom=5&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=2GyQQgAACAAJ&printsec=frontcover&img=1&zoom=1&source=gbs_api"
},
"language": "ja",
"previewLink": "http://books.google.co.jp/books?id=2GyQQgAACAAJ&dq=isbn:9784150115845&hl=&cd=1&source=gbs_api",
"infoLink": "http://books.google.co.jp/books?id=2GyQQgAACAAJ&dq=isbn:9784150115845&hl=&source=gbs_api",
"canonicalVolumeLink": "https://books.google.com/books/about/%E3%82%B8%E3%83%A7%E3%83%8A%E3%82%B5%E3%83%B3%E3%81%A8%E5%AE%87%E5%AE%99%E3%82%AF%E3%82%B8%E3%83%A9.html?hl=&id=2GyQQgAACAAJ"
},
"saleInfo": {
"country": "JP",
"saleability": "NOT_FOR_SALE",
"isEbook": false
},
"accessInfo": {
"country": "JP",
"viewability": "NO_PAGES",
"embeddable": false,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": false
},
"pdf": {
"isAvailable": false
},
"webReaderLink": "http://play.google.com/books/reader?id=2GyQQgAACAAJ&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "NONE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "さわやかな9月の風のなかを空飛ぶフライパンに乗って、宇宙クジラが棲む遙かな銀河へ、巨人族が暮らす深い海の洞へと、冒険の旅に出かけてみませんか ..."
}
}
]
}
{
"kind": "books#volumes",
"totalItems": 3075,
"items": [
{
"kind": "books#volume",
"id": "Upm8xgEACAAJ",
"etag": "3ExSsKl5+aY",
"selfLink": "https://www.googleapis.com/books/v1/volumes/Upm8xgEACAAJ",
"volumeInfo": {
"title": "いまさら翼といわれても",
"authors": [
"米澤穂信"
],
"publishedDate": "2019-06-25",
"description": "「ちーちゃんの行きそうなところ、知らない?」夏休み初日、折木奉太郎にかかってきた“古典部”部員・伊原摩耶花からの電話。合唱祭の本番を前に、ソロパートを任されている千反田えるが姿を消したと言う。千反田はいま、どんな思いでどこにいるのか―会場に駆けつけた奉太郎は推理を開始する。千反田の知られざる苦悩が垣間見える表題作ほか、謎解きを通し“古典部”メンバーの新たな一面に出会う全6編。シリーズ第6弾!",
"industryIdentifiers": [
{
"type": "ISBN_10",
"identifier": "4041081645"
},
{
"type": "ISBN_13",
"identifier": "9784041081648"
}
],
"readingModes": {
"text": false,
"image": false
},
"pageCount": 372,
"printType": "BOOK",
"maturityRating": "NOT_MATURE",
"allowAnonLogging": false,
"contentVersion": "preview-1.0.0",
"panelizationSummary": {
"containsEpubBubbles": false,
"containsImageBubbles": false
},
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=Upm8xgEACAAJ&printsec=frontcover&img=1&zoom=5&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=Upm8xgEACAAJ&printsec=frontcover&img=1&zoom=1&source=gbs_api"
},
"language": "ja",
"previewLink": "http://books.google.co.jp/books?id=Upm8xgEACAAJ&dq=%E3%81%84%E3%81%BE%E3%81%95%E3%82%89%E7%BF%BC%E3%81%A8%E3%81%84%E3%82%8F%E3%82%8C%E3%81%A6%E3%82%82&hl=&cd=1&source=gbs_api",
"infoLink": "http://books.google.co.jp/books?id=Upm8xgEACAAJ&dq=%E3%81%84%E3%81%BE%E3%81%95%E3%82%89%E7%BF%BC%E3%81%A8%E3%81%84%E3%82%8F%E3%82%8C%E3%81%A6%E3%82%82&hl=&source=gbs_api",
"canonicalVolumeLink": "https://books.google.com/books/about/%E3%81%84%E3%81%BE%E3%81%95%E3%82%89%E7%BF%BC%E3%81%A8%E3%81%84%E3%82%8F%E3%82%8C%E3%81%A6%E3%82%82.html?hl=&id=Upm8xgEACAAJ"
},
"saleInfo": {
"country": "JP",
"saleability": "NOT_FOR_SALE",
"isEbook": false
},
"accessInfo": {
"country": "JP",
"viewability": "NO_PAGES",
"embeddable": false,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": false
},
"pdf": {
"isAvailable": false
},
"webReaderLink": "http://play.google.com/books/reader?id=Upm8xgEACAAJ&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "NONE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "「ちーちゃんの行きそうなところ、知らない?」夏休み初日、折木奉太郎にかかってきた“古典部”部員・伊原摩耶花からの電話。合唱祭の本番を前に、ソロパートを任されてい ..."
}
},
{
"kind": "books#volume",
"id": "L_oSMQAACAAJ",
"etag": "Kmv9aet3sKo",
"selfLink": "https://www.googleapis.com/books/v1/volumes/L_oSMQAACAAJ",
"volumeInfo": {
"title": "いまさら翼といわれても",
"authors": [
"米澤穂信"
],
"publishedDate": "2016-11",
"description": "「大人」になるため、挑まなければいけない謎。待望の〈古典部〉最新作!",
"industryIdentifiers": [
{
"type": "ISBN_10",
"identifier": "4041047617"
},
{
"type": "ISBN_13",
"identifier": "9784041047613"
}
],
"readingModes": {
"text": false,
"image": false
},
"pageCount": 360,
"printType": "BOOK",
"maturityRating": "NOT_MATURE",
"allowAnonLogging": false,
"contentVersion": "preview-1.0.0",
"panelizationSummary": {
"containsEpubBubbles": false,
"containsImageBubbles": false
},
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=L_oSMQAACAAJ&printsec=frontcover&img=1&zoom=5&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=L_oSMQAACAAJ&printsec=frontcover&img=1&zoom=1&source=gbs_api"
},
"language": "ja",
"previewLink": "http://books.google.co.jp/books?id=L_oSMQAACAAJ&dq=%E3%81%84%E3%81%BE%E3%81%95%E3%82%89%E7%BF%BC%E3%81%A8%E3%81%84%E3%82%8F%E3%82%8C%E3%81%A6%E3%82%82&hl=&cd=2&source=gbs_api",
"infoLink": "http://books.google.co.jp/books?id=L_oSMQAACAAJ&dq=%E3%81%84%E3%81%BE%E3%81%95%E3%82%89%E7%BF%BC%E3%81%A8%E3%81%84%E3%82%8F%E3%82%8C%E3%81%A6%E3%82%82&hl=&source=gbs_api",
"canonicalVolumeLink": "https://books.google.com/books/about/%E3%81%84%E3%81%BE%E3%81%95%E3%82%89%E7%BF%BC%E3%81%A8%E3%81%84%E3%82%8F%E3%82%8C%E3%81%A6%E3%82%82.html?hl=&id=L_oSMQAACAAJ"
},
"saleInfo": {
"country": "JP",
"saleability": "NOT_FOR_SALE",
"isEbook": false
},
"accessInfo": {
"country": "JP",
"viewability": "NO_PAGES",
"embeddable": false,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": false
},
"pdf": {
"isAvailable": false
},
"webReaderLink": "http://play.google.com/books/reader?id=L_oSMQAACAAJ&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "NONE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "「大人」になるため、挑まなければいけない謎。待望の〈古典部〉最新作!"
}
},
{
"kind": "books#volume",
"id": "h_84DwAAQBAJ",
"etag": "Xt5G5Oa+P2Y",
"selfLink": "https://www.googleapis.com/books/v1/volumes/h_84DwAAQBAJ",
"volumeInfo": {
"title": "米澤穂信と古典部",
"authors": [
"米澤 穂信"
],
"publisher": "KADOKAWA",
"publishedDate": "2017-10-13",
"description": "ある日、大日向が地学講義室に持ち込んだのは、鏑矢中学校で配られていた「読書感想の例文」という冊子。盛り上がる一同に、奉太郎は気が気でない——。 書き下ろし新作短編「虎と蟹、あるいは折木奉太郎の殺人」の他、古典部メンバー四人の本棚、著者の仕事場や執筆資料も初公開! 『氷菓』以来、米澤穂信と一五年間ともに歩み、進化を続けている〈古典部〉シリーズについて「広く深く」網羅した必読の一冊。 【CONTENTS】 Interview 〈古典部〉シリーズ15年のあゆみ 〈古典部〉書き下ろし短編 「虎と蟹、あるいは折木奉太郎の殺人」 対談集——北村薫、恩田陸、綾辻行人、大崎梢 著者による〈古典部〉シリーズ全解説 さらにディープな〈古典部〉隠れネタ大公開! 米澤穂信に30の質問 読者編/作家、声優、漫画家編 あなたの本棚見せてください! 古典部メンバー4人の本棚大公開 お仕事場拝見 2017年 『いまさら翼といわれても』刊行密着レポート! 米澤穂信のマイルストーン 講演録 物語のみなもと 門外不出の〈古典部〉ディクショナリー",
"industryIdentifiers": [
{
"type": "OTHER",
"identifier": "PKEY:04106051A07189100000"
}
],
"readingModes": {
"text": true,
"image": true
},
"printType": "BOOK",
"categories": [
"Fiction"
],
"maturityRating": "NOT_MATURE",
"allowAnonLogging": true,
"contentVersion": "1.1.1.0.preview.3",
"panelizationSummary": {
"containsEpubBubbles": false,
"containsImageBubbles": false
},
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=h_84DwAAQBAJ&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=h_84DwAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
},
"language": "ja",
"previewLink": "http://books.google.co.jp/books?id=h_84DwAAQBAJ&printsec=frontcover&dq=%E3%81%84%E3%81%BE%E3%81%95%E3%82%89%E7%BF%BC%E3%81%A8%E3%81%84%E3%82%8F%E3%82%8C%E3%81%A6%E3%82%82&hl=&cd=3&source=gbs_api",
"infoLink": "https://play.google.com/store/books/details?id=h_84DwAAQBAJ&source=gbs_api",
"canonicalVolumeLink": "https://play.google.com/store/books/details?id=h_84DwAAQBAJ"
},
"saleInfo": {
"country": "JP",
"saleability": "FOR_SALE",
"isEbook": true,
"listPrice": {
"amount": 1188.0,
"currencyCode": "JPY"
},
"retailPrice": {
"amount": 1069.0,
"currencyCode": "JPY"
},
"buyLink": "https://play.google.com/store/books/details?id=h_84DwAAQBAJ&rdid=book-h_84DwAAQBAJ&rdot=1&source=gbs_api",
"offers": [
{
"finskyOfferType": 1,
"listPrice": {
"amountInMicros": 1.188E9,
"currencyCode": "JPY"
},
"retailPrice": {
"amountInMicros": 1.069E9,
"currencyCode": "JPY"
}
}
]
},
"accessInfo": {
"country": "JP",
"viewability": "PARTIAL",
"embeddable": true,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": true,
"acsTokenLink": "http://books.google.co.jp/books/download/%E7%B1%B3%E6%BE%A4%E7%A9%82%E4%BF%A1%E3%81%A8%E5%8F%A4%E5%85%B8%E9%83%A8-sample-epub.acsm?id=h_84DwAAQBAJ&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
},
"pdf": {
"isAvailable": true,
"acsTokenLink": "http://books.google.co.jp/books/download/%E7%B1%B3%E6%BE%A4%E7%A9%82%E4%BF%A1%E3%81%A8%E5%8F%A4%E5%85%B8%E9%83%A8-sample-pdf.acsm?id=h_84DwAAQBAJ&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
},
"webReaderLink": "http://play.google.com/books/reader?id=h_84DwAAQBAJ&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "SAMPLE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "ある日、大日向が地学講義室に持ち込んだのは、鏑矢中学校で配られていた「読書感想の例文」という冊子。盛り上がる一同に、奉太郎は気が気でない——。 ..."
}
},
{
"kind": "books#volume",
"id": "UmeaMOM6CIkC",
"etag": "f1bHpRAxOwA",
"selfLink": "https://www.googleapis.com/books/v1/volumes/UmeaMOM6CIkC",
"volumeInfo": {
"title": "ふたりの距離の概算",
"authors": [
"米澤 穂信"
],
"publisher": "KADOKAWA",
"publishedDate": "2012-06-25",
"description": "春を迎え高校2年生となった奉太郎たちの古典部に新入生・大日向友子が仮入部する。千反田えるたちともすぐに馴染んだ大日向だが、ある日、謎の言葉を残し、入部はしないと告げる。部室での千反田との会話が原因のようだが、奉太郎は納得できない。あいつは他人を傷つけるような性格ではない──。奉太郎は、入部締め切り日に開催されたマラソン大会を走りながら、心変わりの真相を推理する! 大人気青春ミステリ、古典部シリーズ第5弾!",
"readingModes": {
"text": true,
"image": true
},
"pageCount": 287,
"printType": "BOOK",
"categories": [
"Fiction"
],
"averageRating": 4.0,
"ratingsCount": 1,
"maturityRating": "NOT_MATURE",
"allowAnonLogging": true,
"contentVersion": "0.3.3.0.preview.3",
"panelizationSummary": {
"containsEpubBubbles": false,
"containsImageBubbles": false
},
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=UmeaMOM6CIkC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=UmeaMOM6CIkC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
},
"language": "ja",
"previewLink": "http://books.google.co.jp/books?id=UmeaMOM6CIkC&printsec=frontcover&dq=%E3%81%84%E3%81%BE%E3%81%95%E3%82%89%E7%BF%BC%E3%81%A8%E3%81%84%E3%82%8F%E3%82%8C%E3%81%A6%E3%82%82&hl=&cd=4&source=gbs_api",
"infoLink": "https://play.google.com/store/books/details?id=UmeaMOM6CIkC&source=gbs_api",
"canonicalVolumeLink": "https://play.google.com/store/books/details?id=UmeaMOM6CIkC"
},
"saleInfo": {
"country": "JP",
"saleability": "FOR_SALE",
"isEbook": true,
"listPrice": {
"amount": 583.0,
"currencyCode": "JPY"
},
"retailPrice": {
"amount": 525.0,
"currencyCode": "JPY"
},
"buyLink": "https://play.google.com/store/books/details?id=UmeaMOM6CIkC&rdid=book-UmeaMOM6CIkC&rdot=1&source=gbs_api",
"offers": [
{
"finskyOfferType": 1,
"listPrice": {
"amountInMicros": 5.83E8,
"currencyCode": "JPY"
},
"retailPrice": {
"amountInMicros": 5.25E8,
"currencyCode": "JPY"
}
}
]
},
"accessInfo": {
"country": "JP",
"viewability": "PARTIAL",
"embeddable": false,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": true,
"acsTokenLink": "http://books.google.co.jp/books/download/%E3%81%B5%E3%81%9F%E3%82%8A%E3%81%AE%E8%B7%9D%E9%9B%A2%E3%81%AE%E6%A6%82%E7%AE%97-sample-epub.acsm?id=UmeaMOM6CIkC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
},
"pdf": {
"isAvailable": true,
"acsTokenLink": "http://books.google.co.jp/books/download/%E3%81%B5%E3%81%9F%E3%82%8A%E3%81%AE%E8%B7%9D%E9%9B%A2%E3%81%AE%E6%A6%82%E7%AE%97-sample-pdf.acsm?id=UmeaMOM6CIkC&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
},
"webReaderLink": "http://play.google.com/books/reader?id=UmeaMOM6CIkC&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "SAMPLE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "春を迎え高校2年生となった奉太郎たちの古典部に新入生・大日向友子が仮入部する。千反田えるたちともすぐに馴染んだ大日向だが、ある日、謎の言葉を残し、入部はしないと ..."
}
},
{
"kind": "books#volume",
"id": "Mv_Ef8J6ohQC",
"etag": "GwmDdQfsLoQ",
"selfLink": "https://www.googleapis.com/books/v1/volumes/Mv_Ef8J6ohQC",
"volumeInfo": {
"title": "愚者のエンドロール",
"authors": [
"米澤 穂信"
],
"publisher": "KADOKAWA",
"publishedDate": "2002-07",
"description": "「わたし、気になります」文化祭に出展するクラス制作の自主映画を観て千反田えるが呟いた。その映画のラストでは、廃屋の鍵のかかった密室で少年が腕を切り落とされ死んでいた。誰が彼を殺したのか? その方法は? だが、全てが明かされぬまま映画は尻切れとんぼで終わっていた。続きが気になる千反田は、仲間の折木奉太郎たちと共に結末探しに乗り出した! さわやかで、ちょっぴりほろ苦い青春ミステリ! 古典部シリーズ第2弾!",
"readingModes": {
"text": true,
"image": true
},
"pageCount": 254,
"printType": "BOOK",
"categories": [
"Fiction"
],
"maturityRating": "NOT_MATURE",
"allowAnonLogging": true,
"contentVersion": "0.0.1.0.preview.3",
"panelizationSummary": {
"containsEpubBubbles": false,
"containsImageBubbles": false
},
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=Mv_Ef8J6ohQC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=Mv_Ef8J6ohQC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
},
"language": "ja",
"previewLink": "http://books.google.co.jp/books?id=Mv_Ef8J6ohQC&printsec=frontcover&dq=%E3%81%84%E3%81%BE%E3%81%95%E3%82%89%E7%BF%BC%E3%81%A8%E3%81%84%E3%82%8F%E3%82%8C%E3%81%A6%E3%82%82&hl=&cd=5&source=gbs_api",
"infoLink": "https://play.google.com/store/books/details?id=Mv_Ef8J6ohQC&source=gbs_api",
"canonicalVolumeLink": "https://play.google.com/store/books/details?id=Mv_Ef8J6ohQC"
},
"saleInfo": {
"country": "JP",
"saleability": "FOR_SALE",
"isEbook": true,
"listPrice": {
"amount": 562.0,
"currencyCode": "JPY"
},
"retailPrice": {
"amount": 506.0,
"currencyCode": "JPY"
},
"buyLink": "https://play.google.com/store/books/details?id=Mv_Ef8J6ohQC&rdid=book-Mv_Ef8J6ohQC&rdot=1&source=gbs_api",
"offers": [
{
"finskyOfferType": 1,
"listPrice": {
"amountInMicros": 5.62E8,
"currencyCode": "JPY"
},
"retailPrice": {
"amountInMicros": 5.06E8,
"currencyCode": "JPY"
}
}
]
},
"accessInfo": {
"country": "JP",
"viewability": "PARTIAL",
"embeddable": false,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": true,
"acsTokenLink": "http://books.google.co.jp/books/download/%E6%84%9A%E8%80%85%E3%81%AE%E3%82%A8%E3%83%B3%E3%83%89%E3%83%AD%E3%83%BC%E3%83%AB-sample-epub.acsm?id=Mv_Ef8J6ohQC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
},
"pdf": {
"isAvailable": true,
"acsTokenLink": "http://books.google.co.jp/books/download/%E6%84%9A%E8%80%85%E3%81%AE%E3%82%A8%E3%83%B3%E3%83%89%E3%83%AD%E3%83%BC%E3%83%AB-sample-pdf.acsm?id=Mv_Ef8J6ohQC&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
},
"webReaderLink": "http://play.google.com/books/reader?id=Mv_Ef8J6ohQC&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "SAMPLE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "「わたし、気になります」文化祭に出展するクラス制作の自主映画を観て千反田えるが呟いた。その映画のラストでは、廃屋の鍵のかかった密室で少年が腕を切り落とされ死んで ..."
}
},
{
"kind": "books#volume",
"id": "-aQaMNjVcQIC",
"etag": "7Naq3QURnE8",
"selfLink": "https://www.googleapis.com/books/v1/volumes/-aQaMNjVcQIC",
"volumeInfo": {
"title": "氷菓",
"authors": [
"米澤 穂信"
],
"publisher": "KADOKAWA",
"publishedDate": "2001-10",
"description": "いつのまにか密室になった教室。毎週必ず借り出される本。あるはずの文集をないと言い張る少年。そして『氷菓』という題名の文集に秘められた三十三年前の真実──。何事にも積極的には関わろうとしない“省エネ”少年・折木奉太郎は、なりゆきで入部した古典部の仲間に依頼され、日常に潜む不思議な謎を次々と解き明かしていくことに。さわやかで、ちょっぴりほろ苦い青春ミステリ、登場! 古典部シリーズ第1弾!!",
"readingModes": {
"text": true,
"image": true
},
"pageCount": 217,
"printType": "BOOK",
"categories": [
"Fiction"
],
"averageRating": 5.0,
"ratingsCount": 1,
"maturityRating": "NOT_MATURE",
"allowAnonLogging": true,
"contentVersion": "0.4.5.0.preview.3",
"panelizationSummary": {
"containsEpubBubbles": false,
"containsImageBubbles": false
},
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=-aQaMNjVcQIC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=-aQaMNjVcQIC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
},
"language": "ja",
"previewLink": "http://books.google.co.jp/books?id=-aQaMNjVcQIC&printsec=frontcover&dq=%E3%81%84%E3%81%BE%E3%81%95%E3%82%89%E7%BF%BC%E3%81%A8%E3%81%84%E3%82%8F%E3%82%8C%E3%81%A6%E3%82%82&hl=&cd=6&source=gbs_api",
"infoLink": "https://play.google.com/store/books/details?id=-aQaMNjVcQIC&source=gbs_api",
"canonicalVolumeLink": "https://play.google.com/store/books/details?id=-aQaMNjVcQIC"
},
"saleInfo": {
"country": "JP",
"saleability": "FOR_SALE",
"isEbook": true,
"listPrice": {
"amount": 475.0,
"currencyCode": "JPY"
},
"retailPrice": {
"amount": 428.0,
"currencyCode": "JPY"
},
"buyLink": "https://play.google.com/store/books/details?id=-aQaMNjVcQIC&rdid=book--aQaMNjVcQIC&rdot=1&source=gbs_api",
"offers": [
{
"finskyOfferType": 1,
"listPrice": {
"amountInMicros": 4.75E8,
"currencyCode": "JPY"
},
"retailPrice": {
"amountInMicros": 4.28E8,
"currencyCode": "JPY"
}
}
]
},
"accessInfo": {
"country": "JP",
"viewability": "PARTIAL",
"embeddable": false,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": true,
"acsTokenLink": "http://books.google.co.jp/books/download/%E6%B0%B7%E8%8F%93-sample-epub.acsm?id=-aQaMNjVcQIC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
},
"pdf": {
"isAvailable": true,
"acsTokenLink": "http://books.google.co.jp/books/download/%E6%B0%B7%E8%8F%93-sample-pdf.acsm?id=-aQaMNjVcQIC&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
},
"webReaderLink": "http://play.google.com/books/reader?id=-aQaMNjVcQIC&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "SAMPLE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "いつのまにか密室になった教室。毎週必ず借り出される本。あるはずの文集をないと言い張る少年。そして『氷菓』という題名の文集に秘められた三十三年前の真実──。何事に ..."
}
},
{
"kind": "books#volume",
"id": "efzMqgZaphsC",
"etag": "4tJ1AhuaaFY",
"selfLink": "https://www.googleapis.com/books/v1/volumes/efzMqgZaphsC",
"volumeInfo": {
"title": "クドリャフカの順番",
"authors": [
"米澤 穂信"
],
"publisher": "KADOKAWA",
"publishedDate": "2005-06",
"description": "待望の文化祭が始まった。だが折木奉太郎が所属する古典部で大問題が発生。手違いで文集「氷菓」を作りすぎたのだ。部員が頭を抱えるそのとき、学内では奇妙な連続盗難事件が起きていた。盗まれたものは碁石、タロットカード、水鉄砲――。この事件を解決して古典部の知名度を上げよう! 目指すは文集の完売だ!! 盛り上がる仲間たちに後押しされて、奉太郎は事件の謎に挑むはめに......。大人気〈古典部〉シリーズ第3弾! ※本電子書籍は通常版です。発売が終了した限定版とは書影画像が異なりますが、内容は同じものです。",
"readingModes": {
"text": true,
"image": true
},
"pageCount": 314,
"printType": "BOOK",
"categories": [
"Fiction"
],
"averageRating": 3.0,
"ratingsCount": 3,
"maturityRating": "NOT_MATURE",
"allowAnonLogging": true,
"contentVersion": "0.0.2.0.preview.3",
"panelizationSummary": {
"containsEpubBubbles": false,
"containsImageBubbles": false
},
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=efzMqgZaphsC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=efzMqgZaphsC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
},
"language": "ja",
"previewLink": "http://books.google.co.jp/books?id=efzMqgZaphsC&printsec=frontcover&dq=%E3%81%84%E3%81%BE%E3%81%95%E3%82%89%E7%BF%BC%E3%81%A8%E3%81%84%E3%82%8F%E3%82%8C%E3%81%A6%E3%82%82&hl=&cd=7&source=gbs_api",
"infoLink": "https://play.google.com/store/books/details?id=efzMqgZaphsC&source=gbs_api",
"canonicalVolumeLink": "https://play.google.com/store/books/details?id=efzMqgZaphsC"
},
"saleInfo": {
"country": "JP",
"saleability": "FOR_SALE",
"isEbook": true,
"listPrice": {
"amount": 670.0,
"currencyCode": "JPY"
},
"retailPrice": {
"amount": 603.0,
"currencyCode": "JPY"
},
"buyLink": "https://play.google.com/store/books/details?id=efzMqgZaphsC&rdid=book-efzMqgZaphsC&rdot=1&source=gbs_api",
"offers": [
{
"finskyOfferType": 1,
"listPrice": {
"amountInMicros": 6.7E8,
"currencyCode": "JPY"
},
"retailPrice": {
"amountInMicros": 6.03E8,
"currencyCode": "JPY"
}
}
]
},
"accessInfo": {
"country": "JP",
"viewability": "PARTIAL",
"embeddable": false,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": true,
"acsTokenLink": "http://books.google.co.jp/books/download/%E3%82%AF%E3%83%89%E3%83%AA%E3%83%A3%E3%83%95%E3%82%AB%E3%81%AE%E9%A0%86%E7%95%AA-sample-epub.acsm?id=efzMqgZaphsC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
},
"pdf": {
"isAvailable": true,
"acsTokenLink": "http://books.google.co.jp/books/download/%E3%82%AF%E3%83%89%E3%83%AA%E3%83%A3%E3%83%95%E3%82%AB%E3%81%AE%E9%A0%86%E7%95%AA-sample-pdf.acsm?id=efzMqgZaphsC&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
},
"webReaderLink": "http://play.google.com/books/reader?id=efzMqgZaphsC&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "SAMPLE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "待望の文化祭が始まった。だが折木奉太郎が所属する古典部で大問題が発生。手違いで文集「氷菓」を作りすぎたのだ。部員が頭を抱えるそのとき、学内では奇妙な連続盗難事件 ..."
}
},
{
"kind": "books#volume",
"id": "0rpjnwg8lIEC",
"etag": "I9c6KbMDH0M",
"selfLink": "https://www.googleapis.com/books/v1/volumes/0rpjnwg8lIEC",
"volumeInfo": {
"title": "遠まわりする雛",
"authors": [
"米澤 穂信"
],
"publisher": "KADOKAWA",
"publishedDate": "2007-10-05",
"description": "省エネをモットーとする折木奉太郎は〈古典部〉部員・千反田えるの頼みで、地元の祭事「生き雛まつり」へ参加する。十二単をまとった「生き雛」が町を練り歩くという祭りだが、連絡の手違いで開催が危ぶまれる事態に。千反田の機転で祭事は無事に執り行われたが、その「手違い」が気になる彼女は奉太郎とともに真相を推理する。あざやかな謎と春に揺れる心がまぶしい表題作ほか〈古典部〉を過ぎゆく1年を描いた全7編。古典部シリーズ第4弾! ※本電子書籍は通常版です。発売が終了した限定版とは書影画像が異なりますが、内容は同じものです。",
"readingModes": {
"text": true,
"image": true
},
"pageCount": 354,
"printType": "BOOK",
"categories": [
"Fiction"
],
"averageRating": 4.0,
"ratingsCount": 1,
"maturityRating": "NOT_MATURE",
"allowAnonLogging": true,
"contentVersion": "0.0.1.0.preview.3",
"panelizationSummary": {
"containsEpubBubbles": false,
"containsImageBubbles": false
},
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=0rpjnwg8lIEC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=0rpjnwg8lIEC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
},
"language": "ja",
"previewLink": "http://books.google.co.jp/books?id=0rpjnwg8lIEC&printsec=frontcover&dq=%E3%81%84%E3%81%BE%E3%81%95%E3%82%89%E7%BF%BC%E3%81%A8%E3%81%84%E3%82%8F%E3%82%8C%E3%81%A6%E3%82%82&hl=&cd=8&source=gbs_api",
"infoLink": "https://play.google.com/store/books/details?id=0rpjnwg8lIEC&source=gbs_api",
"canonicalVolumeLink": "https://play.google.com/store/books/details?id=0rpjnwg8lIEC"
},
"saleInfo": {
"country": "JP",
"saleability": "FOR_SALE",
"isEbook": true,
"listPrice": {
"amount": 670.0,
"currencyCode": "JPY"
},
"retailPrice": {
"amount": 603.0,
"currencyCode": "JPY"
},
"buyLink": "https://play.google.com/store/books/details?id=0rpjnwg8lIEC&rdid=book-0rpjnwg8lIEC&rdot=1&source=gbs_api",
"offers": [
{
"finskyOfferType": 1,
"listPrice": {
"amountInMicros": 6.7E8,
"currencyCode": "JPY"
},
"retailPrice": {
"amountInMicros": 6.03E8,
"currencyCode": "JPY"
}
}
]
},
"accessInfo": {
"country": "JP",
"viewability": "PARTIAL",
"embeddable": false,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": true,
"acsTokenLink": "http://books.google.co.jp/books/download/%E9%81%A0%E3%81%BE%E3%82%8F%E3%82%8A%E3%81%99%E3%82%8B%E9%9B%9B-sample-epub.acsm?id=0rpjnwg8lIEC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
},
"pdf": {
"isAvailable": true,
"acsTokenLink": "http://books.google.co.jp/books/download/%E9%81%A0%E3%81%BE%E3%82%8F%E3%82%8A%E3%81%99%E3%82%8B%E9%9B%9B-sample-pdf.acsm?id=0rpjnwg8lIEC&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
},
"webReaderLink": "http://play.google.com/books/reader?id=0rpjnwg8lIEC&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "SAMPLE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "省エネをモットーとする折木奉太郎は〈古典部〉部員・千反田えるの頼みで、地元の祭事「生き雛まつり」へ参加する。十二単をまとった「生き雛」が町を練り歩くという祭りだ ..."
}
},
{
"kind": "books#volume",
"id": "E0PcCQAAQBAJ",
"etag": "9+IJ3/VGzCg",
"selfLink": "https://www.googleapis.com/books/v1/volumes/E0PcCQAAQBAJ",
"volumeInfo": {
"title": "さよなら妖精",
"subtitle": "",
"authors": [
"米澤穂信"
],
"publisher": "東京創元社",
"publishedDate": "2006-06-16",
"description": "「哲学的意味がありますか?」 一九九一年四月。雨宿りをする一人の少女との偶然の出会いが、謎に満ちた日々への扉を開けた。遠い国からはるばるおれたちの街にやって来た少女、マーヤ。彼女と過ごす、謎に満ちた日常。そして彼女が帰国したとき、おれたちの最大の謎解きが始まる。覗き込んでくる目、カールがかった黒髪、白い首筋、『哲学的意味がありますか?』、そして紫陽花。謎を解く鍵は記憶の中に――。忘れ難い余韻をもたらす、出会いと祈りの物語。著者の出世作となった清新なボーイ・ミーツ・ガール・ミステリ。",
"industryIdentifiers": [
{
"type": "ISBN_13",
"identifier": "9784488451035"
},
{
"type": "ISBN_10",
"identifier": "4488451039"
}
],
"readingModes": {
"text": true,
"image": true
},
"pageCount": 354,
"printType": "BOOK",
"categories": [
"Fiction"
],
"maturityRating": "NOT_MATURE",
"allowAnonLogging": true,
"contentVersion": "1.2.2.0.preview.3",
"panelizationSummary": {
"containsEpubBubbles": false,
"containsImageBubbles": false
},
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=E0PcCQAAQBAJ&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=E0PcCQAAQBAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api"
},
"language": "ja",
"previewLink": "http://books.google.co.jp/books?id=E0PcCQAAQBAJ&printsec=frontcover&dq=%E3%81%84%E3%81%BE%E3%81%95%E3%82%89%E7%BF%BC%E3%81%A8%E3%81%84%E3%82%8F%E3%82%8C%E3%81%A6%E3%82%82&hl=&cd=9&source=gbs_api",
"infoLink": "https://play.google.com/store/books/details?id=E0PcCQAAQBAJ&source=gbs_api",
"canonicalVolumeLink": "https://play.google.com/store/books/details?id=E0PcCQAAQBAJ"
},
"saleInfo": {
"country": "JP",
"saleability": "FOR_SALE",
"isEbook": true,
"listPrice": {
"amount": 648.0,
"currencyCode": "JPY"
},
"retailPrice": {
"amount": 583.0,
"currencyCode": "JPY"
},
"buyLink": "https://play.google.com/store/books/details?id=E0PcCQAAQBAJ&rdid=book-E0PcCQAAQBAJ&rdot=1&source=gbs_api",
"offers": [
{
"finskyOfferType": 1,
"listPrice": {
"amountInMicros": 6.48E8,
"currencyCode": "JPY"
},
"retailPrice": {
"amountInMicros": 5.83E8,
"currencyCode": "JPY"
}
}
]
},
"accessInfo": {
"country": "JP",
"viewability": "PARTIAL",
"embeddable": true,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": true,
"acsTokenLink": "http://books.google.co.jp/books/download/%E3%81%95%E3%82%88%E3%81%AA%E3%82%89%E5%A6%96%E7%B2%BE-sample-epub.acsm?id=E0PcCQAAQBAJ&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
},
"pdf": {
"isAvailable": true,
"acsTokenLink": "http://books.google.co.jp/books/download/%E3%81%95%E3%82%88%E3%81%AA%E3%82%89%E5%A6%96%E7%B2%BE-sample-pdf.acsm?id=E0PcCQAAQBAJ&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api"
},
"webReaderLink": "http://play.google.com/books/reader?id=E0PcCQAAQBAJ&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "SAMPLE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "「哲学的意味がありますか?」 一九九一年四月。雨宿りをする一人の少女との偶然の出会いが、謎に満ちた日々への扉を開けた。遠い国からはるばるおれたちの街にやって来た ..."
}
},
{
"kind": "books#volume",
"id": "pplpQgAACAAJ",
"etag": "fi8n12JHMxQ",
"selfLink": "https://www.googleapis.com/books/v1/volumes/pplpQgAACAAJ",
"volumeInfo": {
"title": "ボトルネック",
"authors": [
"米澤穂信"
],
"publishedDate": "2009-10-01",
"description": "亡くなった恋人を追悼するため東尋坊を訪れていたぼくは、何かに誘われるように断崖から墜落した...はずだった。ところが気がつくと見慣れた金沢の街にいる。不可解な思いで自宅へ戻ったぼくを迎えたのは、見知らぬ「姉」。もしやここでは、ぼくは「生まれなかった」人間なのか。世界のすべてと折り合えず、自分に対して臆病。そんな「若さ」の影を描き切る、青春ミステリの金字塔。",
"industryIdentifiers": [
{
"type": "ISBN_10",
"identifier": "4101287813"
},
{
"type": "ISBN_13",
"identifier": "9784101287812"
}
],
"readingModes": {
"text": false,
"image": false
},
"pageCount": 312,
"printType": "BOOK",
"categories": [
"Popular literature"
],
"averageRating": 4.0,
"ratingsCount": 1,
"maturityRating": "NOT_MATURE",
"allowAnonLogging": false,
"contentVersion": "preview-1.0.0",
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=pplpQgAACAAJ&printsec=frontcover&img=1&zoom=5&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=pplpQgAACAAJ&printsec=frontcover&img=1&zoom=1&source=gbs_api"
},
"language": "ja",
"previewLink": "http://books.google.co.jp/books?id=pplpQgAACAAJ&dq=%E3%81%84%E3%81%BE%E3%81%95%E3%82%89%E7%BF%BC%E3%81%A8%E3%81%84%E3%82%8F%E3%82%8C%E3%81%A6%E3%82%82&hl=&cd=10&source=gbs_api",
"infoLink": "http://books.google.co.jp/books?id=pplpQgAACAAJ&dq=%E3%81%84%E3%81%BE%E3%81%95%E3%82%89%E7%BF%BC%E3%81%A8%E3%81%84%E3%82%8F%E3%82%8C%E3%81%A6%E3%82%82&hl=&source=gbs_api",
"canonicalVolumeLink": "https://books.google.com/books/about/%E3%83%9C%E3%83%88%E3%83%AB%E3%83%8D%E3%83%83%E3%82%AF.html?hl=&id=pplpQgAACAAJ"
},
"saleInfo": {
"country": "JP",
"saleability": "NOT_FOR_SALE",
"isEbook": false
},
"accessInfo": {
"country": "JP",
"viewability": "NO_PAGES",
"embeddable": false,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": false
},
"pdf": {
"isAvailable": false
},
"webReaderLink": "http://play.google.com/books/reader?id=pplpQgAACAAJ&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "NONE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "亡くなった恋人を追悼するため東尋坊を訪れていたぼくは、何かに誘われるように断崖から墜落した.. ..."
}
}
]
}
{
"kind": "books#volumes",
"totalItems": 1,
"items": [
{
"kind": "books#volume",
"id": "rvftxgEACAAJ",
"etag": "USBntQFyR5U",
"selfLink": "https://www.googleapis.com/books/v1/volumes/rvftxgEACAAJ",
"volumeInfo": {
"title": "アステリズムに花束を",
"subtitle": "百合SFアンソロジー",
"authors": [
"SFマガジン編集部"
],
"publishedDate": "2019-06-25",
"description": "百合―女性間の関係性を扱った創作ジャンル。創刊以来初の3刷となったSFマガジン百合特集の宮澤伊織・森田季節・草野原々・伴名練・今井哲也による掲載作に加え、“ソ連百合”として話題の南木義隆「月と怪物」、新鋭女性作家の共作「海の双翼」、『元年春之祭』の陸秋槎が挑む言語SF「色のない緑」、そして『天冥の標』を完結させた小川一水が描く新作宇宙SFの全9作を収める、世界初の百合SFアンソロジー。",
"industryIdentifiers": [
{
"type": "ISBN_10",
"identifier": "4150313830"
},
{
"type": "ISBN_13",
"identifier": "9784150313838"
}
],
"readingModes": {
"text": false,
"image": false
},
"pageCount": 409,
"printType": "BOOK",
"maturityRating": "NOT_MATURE",
"allowAnonLogging": false,
"contentVersion": "preview-1.0.0",
"panelizationSummary": {
"containsEpubBubbles": false,
"containsImageBubbles": false
},
"imageLinks": {
"smallThumbnail": "http://books.google.com/books/content?id=rvftxgEACAAJ&printsec=frontcover&img=1&zoom=5&source=gbs_api",
"thumbnail": "http://books.google.com/books/content?id=rvftxgEACAAJ&printsec=frontcover&img=1&zoom=1&source=gbs_api"
},
"language": "ja",
"previewLink": "http://books.google.co.jp/books?id=rvftxgEACAAJ&dq=isbn:9784150313838&hl=&cd=1&source=gbs_api",
"infoLink": "http://books.google.co.jp/books?id=rvftxgEACAAJ&dq=isbn:9784150313838&hl=&source=gbs_api",
"canonicalVolumeLink": "https://books.google.com/books/about/%E3%82%A2%E3%82%B9%E3%83%86%E3%83%AA%E3%82%BA%E3%83%A0%E3%81%AB%E8%8A%B1%E6%9D%9F%E3%82%92.html?hl=&id=rvftxgEACAAJ"
},
"saleInfo": {
"country": "JP",
"saleability": "NOT_FOR_SALE",
"isEbook": false
},
"accessInfo": {
"country": "JP",
"viewability": "NO_PAGES",
"embeddable": false,
"publicDomain": false,
"textToSpeechPermission": "ALLOWED",
"epub": {
"isAvailable": false
},
"pdf": {
"isAvailable": false
},
"webReaderLink": "http://play.google.com/books/reader?id=rvftxgEACAAJ&hl=&printsec=frontcover&source=gbs_api",
"accessViewStatus": "NONE",
"quoteSharingAllowed": false
},
"searchInfo": {
"textSnippet": "百合―女性間の関係性を扱った創作ジャンル。創刊以来初の3刷となったSFマガジン百合特集の宮澤伊織・森田季節・草野原々・伴名練・今井哲也による掲載作に加え、“ソ連百合 ..."
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment