Google Play Books Store API
Our Google Play Books Store API allows you to scrape SERP results from Google Play Books & Audiobooks Store. The API is accessed through the following endpoint: /search?engine=google_play_books
. A user may query the following: https://serpapi.com/search?engine=google_play_books
utilizing a GET request. Head to the playground for a live and interactive demo.
Three types of searches you can do are:
- Query Search: by using q parameter
- Category Search: by using books_category parameter
- Plain Search: without using q or books_category parameters
API Parameters
Localization
gl
Optional
Parameter defines the country to use for the Google Play search. It's a two-letter country code. (e.g., us
(default) for the United States, uk
for United Kingdom, or fr
for France). You can find the full list of Google Play country availability here: Google Play Countries. Afterwards, head to the Google countries page page for a two-letter country code.
hl
Optional
Parameter defines the language to use for the Google Play search. It's a two-letter language code. (e.g., en
(default) for English, es
for Spanish, or fr
for French). Head to the Google languages page for a full list of supported Google languages.
Google Play Categories
books_category
Optional
Parameter defines the books store category. Head to the Google Play store Books Categories for a full list of supported Google Play Books store categories.
Advanced Google Play Parameters
Pagination
next_page_token
Optional
Parameter defines the next page token. It is used for retrieving the next page results. It shouldn't be used with the section_page_token, see_more_token, and chart parameters.
section_page_token
Optional
Parameter defines the section page token used for retrieving the pagination results from individual sections. This parameter is a safer version of see_more_token, and is found in every row you can paginate into. It shouldn't be used with the next_page_token, see_more_token, and chart parameters
chart
Optional
Parameter is used for showing top charts. It can return up to 50
results. Each store contains different charts which require different values for retrieving results. To get the value of a specific chart you can use our Google Play Books Store API JSON output: chart_options[index].value
(e.g. chart=topselling_free
). It shouldn't be used with the section_page_token, see_more_token, and next_page_token parameters
Serpapi Parameters
no_cache
Optional
Parameter will force SerpApi to fetch the Google Play Books results even if a cached version is already present. A cache is served only if the query and all parameters are exactly the same. Cache expires after 1h. Cached searches are free, and are not counted towards your searches per month. It can be set to false
(default) to allow results from the cache, or true
to disallow results from the cache. no_cache and async parameters should not be used together.
async
Optional
Parameter defines the way you want to submit your search to SerpApi. It can be set to false
(default) to open an HTTP connection and keep it open until you got your search results, or true
to just submit your search to SerpApi and retrieve them later. In this case, you'll need to use our Searches Archive API to retrieve your results. async and no_cache parameters should not be used together. async should not be used on accounts with Ludicrous Speed enabled.
zero_trace
Optional
Enterprise only. Parameter enables ZeroTrace mode. It can be set to false
(default) or true
. Enable this mode to skip storing search parameters, search files, and search metadata on our servers. This may make debugging more difficult.
API Results
JSON Results
JSON output includes structured data for Books Store Organic Results, Chart Options, and Top Charts results.
A search status is accessible through search_metadata.status
. It flows this way: Processing
-> Success
|| Error
. If a search has failed, error
will contain an error message. search_metadata.id
is the search ID inside SerpApi.
Four types of result structures you can encounter are:
- Rows Results type Organic Results
- List Results type Organic Results
- Top Charts Results
- Chart Options Results
HTML Results
HTML output is useful to debug JSON results or support features not supported yet by SerpApi. HTML output gives you the raw HTML results from Google.
This API does not have html response when using pagination, retrieving top charts, or retrieveing some books_category results. It is just a text. search_metadata.prettify_html_file
contains prettified version of the result. It is displayed in the playground.
API Examples
JSON structure overview for Rows Type Organic Results and Chart Options
{
...
"chart_options": [
{
"text": "String - Chart Option text (Ex: 'Deals')",
"value": "String - Chart Option value (Ex: 'top_deals')"
}
],
"organic_results": [
{
"title": "String - Organic Result Row title (Ex: 'New York Times® bestsellers')",
"serpapi_section_pagination": {
"next": "String - SerpApi link for paginating into individual row sections",
"section_page_token": "String - Section Page Token for paginating into individual row sections"
},
"see_more_link": "String - Google Play link for paginating into individual row sections. This pagination is not always available.",
"see_more_token": "String - See More Token for paginating into individual row sections. This pagination is not always available.",
"serpapi_link": "String - SerpApi link for paginating into individual row sections. This pagination is not always available.",
"items": [
{
"title": "String - Organic Result title (Ex: 'The Midnight Library')",
"link": "String - Organic Result link (Ex: 'https://play.google.com/store/books/details/Matt_Haig_The_Midnight_Library?id=2Z9bEAAAQBAJ')",
"product_id": "String - Organic Result product id (Ex: '2Z9bEAAAQBAJ')",
"serpapi_link": "String - SerpApi Google Play Product API link with the product id.",
"rating": "Float - Organic Result rating (Ex: 4.5)",
"author": "String - Organic Result author (Ex: 'Matt Haig')",
"category": "String - Organic Result category (Ex: 'Fiction')",
"extension": {
"name": "String - Organic Result extension name (Ex: 'Hardcover')",
}
"old_price": "String - Organic Result old price (Ex: '$14.99')",
"extracted_old_price": "Float - Organic Result extracted old price (Ex: 14.99)",
"price": "String - Organic Result price (Ex: '$14.99')",
"extracted_price": "Float - Organic Result extracted price (Ex: 14.99)",
"thumbnail": "String - Organic Result thumbnail",
"description": "String - Organic Result description",
},
...
]
},
...
],
"serpapi_pagination": {
"next": "String - SerpApi link for paginating to next page of rows results",
"next_page_token": "String - Next Page Token for paginating to next page of rows results"
},
...
}
JSON structure overview for List Type Organic Results
{
...
"organic_results": [
{
"title": "String - Organic Result Row title (Ex: 'New York Times® bestsellers')",
"items": [
{
"title": "String - Organic Result title (Ex: 'The Midnight Library')",
"link": "String - Organic Result link (Ex: 'https://play.google.com/store/books/details/Matt_Haig_The_Midnight_Library?id=2Z9bEAAAQBAJ')",
"product_id": "String - Organic Result product id (Ex: '2Z9bEAAAQBAJ')",
"serpapi_link": "String - SerpApi Google Play Product API link with the product id.",
"rating": "Float - Organic Result rating (Ex: 4.5)",
"author": "String - Organic Result author (Ex: 'Matt Haig')",
"category": "String - Organic Result category (Ex: 'Fiction')",
"extension": {
"name": "String - Organic Result extension name (Ex: 'Hardcover')",
}
"old_price": "String - Organic Result old price (Ex: '$14.99')",
"extracted_old_price": "Float - Organic Result extracted old price (Ex: 14.99)",
"price": "String - Organic Result price (Ex: '$14.99')",
"extracted_price": "Float - Organic Result extracted price (Ex: 14.99)",
"thumbnail": "String - Organic Result thumbnail",
"description": "String - Organic Result description",
},
...
]
},
...
],
"serpapi_pagination": {
"next": "String - SerpApi link for paginating to next page of list results",
"next_page_token": "String - Next Page Token for paginating to next page of list results"
},
...
}
JSON structure overview for Top Charts Results
{
...
"top_charts": [
{
"title": "String - Organic Result title (Ex: 'The Midnight Library')",
"link": "String - Organic Result link (Ex: 'https://play.google.com/store/books/details/Matt_Haig_The_Midnight_Library?id=2Z9bEAAAQBAJ')",
"product_id": "String - Organic Result product id (Ex: '2Z9bEAAAQBAJ')",
"serpapi_link": "String - SerpApi Google Play Product API link with the product id.",
"rating": "Float - Organic Result rating (Ex: 4.5)",
"author": "String - Organic Result author (Ex: 'Matt Haig')",
"category": "String - Organic Result category (Ex: 'Fiction')",
"extension": {
"name": "String - Organic Result extension name (Ex: 'Hardcover')",
}
"old_price": "String - Organic Result old price (Ex: '$14.99')",
"extracted_old_price": "Float - Organic Result extracted old price (Ex: 14.99)",
"price": "String - Organic Result price (Ex: '$14.99')",
"extracted_price": "Float - Organic Result extracted price (Ex: 14.99)",
"thumbnail": "String - Organic Result thumbnail",
"description": "String - Organic Result description",
},
...
],
...
}
API Examples
Rows Type Organic results overview for Google Play Books (Plain Search)
{
"search_metadata": {
"id": "641a526a914a81625410d174",
"status": "Success",
"json_endpoint": "https://serpapi.com/searches/1b481a56fca8ba8a/641a526a914a81625410d174.json",
"created_at": "2023-03-22 00:57:14 UTC",
"processed_at": "2023-03-22 00:57:15 UTC",
"google_play_books_url": "https://play.google.com/store/books?hl=en&gl=us",
"raw_html_file": "https://serpapi.com/searches/1b481a56fca8ba8a/641a526a914a81625410d174.html",
"total_time_taken": 0.65
},
"search_parameters": {
"engine": "google_play_books",
"hl": "en",
"gl": "us"
},
"chart_options": [
{
"text": "Top selling",
"value": "topselling_paid"
},
{
"text": "Deals",
"value": "top_deals"
},
{
"text": "New releases in fiction",
"value": "new_fiction"
},
...
],
"organic_results": [
{
"title": "New York Times® bestsellers",
"items": [
{
"title": "It Starts with Us: A Novel",
"link": "https://play.google.com/store/books/details/Colleen_Hoover_It_Starts_with_Us?id=zlNdEAAAQBAJ",
"product_id": "zlNdEAAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=zlNdEAAAQBAJ",
"rating": 4.6,
"author": "Colleen Hoover",
"extension": {
"name": "Book 2"
},
"category": "Romance",
"price": "$13.99",
"extracted_price": 13.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/zlNdEAAAQBAJ?fife=w256-h256",
"description": "Before It Ends with Us, it started with Atlas. Colleen Hoover tells fan favorite Atlas’s side of the story and shares what comes next in this long-anticipated sequel to the “glorious and touching” (USA TODAY) #1 New York Times bestseller It Ends with Us.Lily and her ex-husband, Ryle, have just settled into a civil coparenting rhythm when she suddenly bumps into her first love, Atlas, again. After nearly two years separated, she is elated that for once, time is on their side, and she immediately says yes when Atlas asks her on a date. But her excitement is quickly hampered by the knowledge that, though they are no longer married, Ryle is still very much a part of her life—and Atlas Corrigan is the one man he will hate being in his ex-wife and daughter’s life. Switching between the perspectives of Lily and Atlas, It Starts with Us picks up right where the epilogue for the “gripping, pulse-pounding” (Sarah Pekkanen, author of Perfect Neighbors) bestselling phenomenon It Ends with Us left off. Revealing more about Atlas’s past and following Lily as she embraces a second chance at true love while navigating a jealous ex-husband, it proves that “no one delivers an emotional read like Colleen Hoover” (Anna Todd, New York Times bestselling author)."
},
{
"title": "Daisy Jones & The Six: A Novel",
"link": "https://play.google.com/store/books/details/Taylor_Jenkins_Reid_Daisy_Jones_The_Six?id=zZJfDwAAQBAJ",
"product_id": "zZJfDwAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=zZJfDwAAQBAJ",
"rating": 4.4,
"author": "Taylor Jenkins Reid",
"category": "Fiction & literature",
"price": "$12.99",
"extracted_price": 12.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/zZJfDwAAQBAJ?fife=w256-h256",
"description": "#1 NATIONAL BESTSELLER • OVER ONE MILLION COPIES SOLD! A gripping novel about the whirlwind rise of an iconic 1970s rock group and their beautiful lead singer, revealing the mystery behind their infamous breakup—from the author of The Seven Husbands of Evelyn Hugo, Malibu Rising, and Carrie Soto Is BackREESE’S BOOK CLUB PICK • NOW AN ORIGINAL STREAMING SERIES EXECUTIVE PRODUCED BY REESE WITHERSPOON “An explosive, dynamite, down-and-dirty look at a fictional rock band told in an interview style that gives it irresistible surface energy.”—Elin HilderbrandONE OF THE BEST BOOKS OF THE YEAR: NPR, The Washington Post, Esquire, Glamour, Real Simple, Good Housekeeping, Marie Claire, Parade, Paste, Shelf Awareness, BookRiot Everyone knows DAISY JONES & THE SIX, but nobody knows the reason behind their split at the absolute height of their popularity . . . until now.Daisy is a girl coming of age in L.A. in the late sixties, sneaking into clubs on the Sunset Strip, sleeping with rock stars, and dreaming of singing at the Whisky a Go Go. The sex and drugs are thrilling, but it’s the rock ’n’ roll she loves most. By the time she’s twenty, her voice is getting noticed, and she has the kind of heedless beauty that makes people do crazy things. Also getting noticed is The Six, a band led by the brooding Billy Dunne. On the eve of their first tour, his girlfriend Camila finds out she’s pregnant, and with the pressure of impending fatherhood and fame, Billy goes a little wild on the road. Daisy and Billy cross paths when a producer realizes that the key to supercharged success is to put the two together. What happens next will become the stuff of legend. The making of that legend is chronicled in this riveting and unforgettable novel, written as an oral history of one of the biggest bands of the seventies. Taylor Jenkins Reid is a talented writer who takes her work to a new level with Daisy Jones & The Six, brilliantly capturing a place and time in an utterly distinctive voice."
},
{
"title": "It Ends with Us: A Novel",
"link": "https://play.google.com/store/books/details/Colleen_Hoover_It_Ends_with_Us?id=peTPCgAAQBAJ",
"product_id": "peTPCgAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=peTPCgAAQBAJ",
"rating": 4.6,
"author": "Colleen Hoover",
"extension": {
"name": "Book 1"
},
"category": "Romance",
"price": "$12.99",
"extracted_price": 12.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/peTPCgAAQBAJ?fife=w256-h256",
"description": "From the #1 New York Times bestselling author of It Starts with Us and All Your Perfects, a “brave and heartbreaking novel that digs its claws into you and doesn’t let go, long after you’ve finished it” (Anna Todd, New York Times bestselling author) about a workaholic with a too-good-to-be-true romance can’t stop thinking about her first love—soon to be a major motion picture starring Blake Lively and Justin Baldoni.Lily hasn’t always had it easy, but that’s never stopped her from working hard for the life she wants. She’s come a long way from the small town where she grew up—she graduated from college, moved to Boston, and started her own business. And when she feels a spark with a gorgeous neurosurgeon named Ryle Kincaid, everything in Lily’s life seems too good to be true. Ryle is assertive, stubborn, maybe even a little arrogant. He’s also sensitive, brilliant, and has a total soft spot for Lily. And the way he looks in scrubs certainly doesn’t hurt. Lily can’t get him out of her head. But Ryle’s complete aversion to relationships is disturbing. Even as Lily finds herself becoming the exception to his “no dating” rule, she can’t help but wonder what made him that way in the first place. As questions about her new relationship overwhelm her, so do thoughts of Atlas Corrigan—her first love and a link to the past she left behind. He was her kindred spirit, her protector. When Atlas suddenly reappears, everything Lily has built with Ryle is threatened. An honest, evocative, and tender novel, It Ends with Us is “a glorious and touching read, a forever keeper. The kind of book that gets handed down” (USA TODAY)."
},
...
],
],
"serpapi_pagination": {
"next": "https://serpapi.com/search.json?engine=google_play_books&gl=us&hl=en&next_page_token=Cgiq5rbCAwIIBRAE",
"next_page_token": "Cgiq5rbCAwIIBRAE"
}
}
}
List Type Organic results overview for Google Play Books with section_page_token(Plain Search)
{
"search_metadata": {
"id": "64bfe03f914a8155cefdfecf",
"status": "Success",
"json_endpoint": "https://serpapi.com/searches/e7a0a203396aa757/64bfe03f914a8155cefdfecf.json",
"created_at": "2023-07-25 14:46:23 UTC",
"processed_at": "2023-07-25 14:46:23 UTC",
"google_play_books_url": "https://play.google.com/store/search?q=Coffee&c=books&hl=en&gl=us",
"raw_html_file": "https://serpapi.com/searches/e7a0a203396aa757/64bfe03f914a8155cefdfecf.html",
"prettify_html_file": "https://serpapi.com/searches/e7a0a203396aa757/64bfe03f914a8155cefdfecf.prettify",
"total_time_taken": 1.34
},
"search_parameters": {
"engine": "google_play_books",
"q": "Coffee",
"hl": "en",
"gl": "us",
"section_page_token": "Cgj6noGdAwIIFBAUGjKyAi8KJwohcHJvbW90aW9uXzEwMDI0ZDhfYmlnX2Jvb2tzX21vbnRoEEQYASIECAUILA"
},
"organic_results": [
{
"title": "Big books of summer",
"items": [
{
"title": "Shadow Dance",
"link": "https://play.google.com/store/books/details/Christine_Feehan_Shadow_Dance?id=dnSdEAAAQBAJ",
"product_id": "dnSdEAAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&gl=us&hl=en&platform=phone&product_id=dnSdEAAAQBAJ&sort_by=1&store=books",
"description": "Tensions and passions rise in the city that never sleeps in this propulsive novel in #1 New York Times bestselling author Christine Feehan’s Shadow Riders series. As the head of the New York City Shadow Riders and his branch of the Ferraro family, Geno bears the weight of dual responsibilities on his broad shoulders. There’s nothing more important to Geno than protecting his territory and his famiglia. So when his own parents become the latest victims in a string of vicious murders, Geno is ready to go scorched earth. He thinks he has the assassin in his sights, but he’s unprepared for the firestorm their connection ignites.... Amaranthe Aubert’s lithe dancer’s body conceals a spine of steel. Even held captive and faced with the threat of lethal interrogation, she’s not about to cave under pressure. She had nothing to do with the murders, no matter what the ruthless man in front of her believes. But before Amara knows what’s happening, Geno connects to her in the shadows, stripping her bare of all artifice. Now, she has no way to hide her true reason for being in New York—and nowhere to run from the man who’s very presence steals the very breath from her lungs....",
"category": "Book 8",
"author": "Book 8",
"price": "$9.99",
"extracted_price": 9.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/dnSdEAAAQBAJ?fife"
},
{
"title": "Heavenly Tyrant",
"link": "https://play.google.com/store/books/details/Xiran_Jay_Zhao_Heavenly_Tyrant?id=s5iWEAAAQBAJ",
"product_id": "s5iWEAAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&gl=us&hl=en&platform=phone&product_id=s5iWEAAAQBAJ&sort_by=1&store=books",
"description": "Zetian must balance dangerous politics with a new quest for vengeance in the sequel to the #1 New York Times bestseller Iron Widow, a blend of Chinese history and mecha science fiction. After suffering devastating loss and making drastic decisions, Zetian finds herself at the seat of power in Huaxia. But she has also learned that her world is not as it seems, and revelations about an enemy more daunting than Zetian imagined forces her to share power with a dangerous man she cannot simply depose. Despite having vastly different ideas about how they must deconstruct the corrupt and misogynist system that plagues their country, Zetian must join this man in a dance of truth and lies and perform their roles to perfection in order to take down their common enemy, who seeks to control them as puppets while dangling one of Zetian’s loved ones as a hostage. With political unrest and perilous forces aiming to undermine Zetian at every turn, can she enact positive changes as a fair and just ruler? Or will she be forced to rely on fear and violence and succumb to her darker instincts in her quest for vengeance? Find out in this highly-anticipated sequel to Iron Widow, a #1 New York Times bestseller!",
"category": "Book 2",
"author": "Book 2",
"price": "$10.99",
"extracted_price": 10.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/s5iWEAAAQBAJ?fife"
},
{
"title": "He Who Drowned the World: A Novel",
"link": "https://play.google.com/store/books/details/Shelley_Parker_Chan_He_Who_Drowned_the_World?id=_8SYEAAAQBAJ",
"product_id": "_8SYEAAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&gl=us&hl=en&platform=phone&product_id=_8SYEAAAQBAJ&sort_by=1&store=books",
"description": "The sequel and series conclusion to She Who Became the Sun, the accomplished, poetic debut of war and destiny, sweeping across an epic alternate China. Mulan meets The Song of Achilles.How much would you give to win the world?Zhu Yuanzhang, the Radiant King, is riding high after her victory that tore southern China from its Mongol masters. Now she burns with a new desire: to seize the throne and crown herself emperor.But Zhu isn’t the only one with imperial ambitions. Her neighbor in the south, the courtesan Madam Zhang, wants the throne for her husband—and she’s strong enough to wipe Zhu off the map. To stay in the game, Zhu will have to gamble everything on a risky alliance with an old enemy: the talented but unstable eunuch general Ouyang, who has already sacrificed everything for a chance at revenge on his father’s killer, the Great Khan.Unbeknownst to the southerners, a new contender is even closer to the throne. The scorned scholar Wang Baoxiang has maneuvered his way into the capital, and his lethal court games threaten to bring the empire to its knees. For Baoxiang also desires revenge: to become the most degenerate Great Khan in history—and in so doing, make a mockery of every value his Mongol warrior family loved more than him.All the contenders are determined to do whatever it takes to win. But when desire is the size of the world, the price could be too much for even the most ruthless heart to bear...At the Publisher's request, this title is being sold without Digital Rights Management Software (DRM) applied.",
"category": "Book 2",
"author": "Book 2",
"price": "$14.99",
"extracted_price": 14.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/_8SYEAAAQBAJ?fife"
},
...
]
],
"serpapi_pagination": {
"next": "https://serpapi.com/search.json?engine=google_play_books&gl=us&hl=en&next_page_token=SECT_Cgj6noGdAwIIRhBGGjKyAi8KJwohcHJvbW90aW9uXzEwMDI0ZDhfYmlnX2Jvb2tzX21vbnRoEEQYASIECAUILA&q=Coffee§ion_page_token=Cgj6noGdAwIIFBAUGjKyAi8KJwohcHJvbW90aW9uXzEwMDI0ZDhfYmlnX2Jvb2tzX21vbnRoEEQYASIECAUILA",
"next_page_token": "SECT_Cgj6noGdAwIIRhBGGjKyAi8KJwohcHJvbW90aW9uXzEwMDI0ZDhfYmlnX2Jvb2tzX21vbnRoEEQYASIECAUILA"
}
}
}
Rows Type Organic results overview for Google Play Books with next_page_token(Plain Search)
{
"search_metadata": {
"id": "64bfe0fa914a8155d1abd93a",
"status": "Success",
"json_endpoint": "https://serpapi.com/searches/1b481a56fca8ba8a/64bfe0fa914a8155d1abd93a.json",
"created_at": "2023-07-25 14:49:30 UTC",
"processed_at": "2023-07-25 14:49:30 UTC",
"google_play_books_url": "https://play.google.com/store/books?hl=en&gl=us",
"raw_html_file": "https://serpapi.com/searches/1b481a56fca8ba8a/64bfe0fa914a8155d1abd93a.html",
"prettify_html_file": "https://serpapi.com/searches/1b481a56fca8ba8a/64bfe0fa914a8155d1abd93a.prettify",
"total_time_taken": 1.46
},
"search_parameters": {
"engine": "google_play_books",
"hl": "en",
"gl": "us",
"next_page_token": "Cgiq5rbCAwIIBRAE"
},
"organic_results": [
{
"title": "Dive into a beach read",
"serpapi_section_pagination": {
"next": "https://serpapi.com/search.json?engine=google_play_books&gl=us&hl=en§ion_page_token=Cgj6noGdAwIIChAKGjGyAi4KJgogcHJvbW90aW9uX2Vib29rX2JlYWNoX3JlYWRzXzIwMjMQRBgBIgQIBQgs",
"section_page_token": "Cgj6noGdAwIIChAKGjGyAi4KJgogcHJvbW90aW9uX2Vib29rX2JlYWNoX3JlYWRzXzIwMjMQRBgBIgQIBQgs"
},
"see_more_link": "https://play.google.com/store/books/collection/cluster?&gsr=CjGyAi4KJgogcHJvbW90aW9uX2Vib29rX2JlYWNoX3JlYWRzXzIwMjMQRBgBIgQIBQgs:S:ANO1ljKRyQg",
"see_more_token": "CjGyAi4KJgogcHJvbW90aW9uX2Vib29rX2JlYWNoX3JlYWRzXzIwMjMQRBgBIgQIBQgs:S:ANO1ljKRyQg",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_books&gl=us&hl=en&see_more_token=CjGyAi4KJgogcHJvbW90aW9uX2Vib29rX2JlYWNoX3JlYWRzXzIwMjMQRBgBIgQIBQgs%3AS%3AANO1ljKRyQg",
"items": [
{
"title": "The Covenant of Water (Oprah's Book Club)",
"link": "https://play.google.com/store/books/details/Abraham_Verghese_The_Covenant_of_Water_Oprah_s_Boo?id=_MO5EAAAQBAJ",
"product_id": "_MO5EAAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&gl=us&hl=en&platform=phone&product_id=_MO5EAAAQBAJ&sort_by=1&store=books",
"description": "OPRAH’S BOOK CLUB PICK • INSTANT NEW YORK TIMES BESTSELLER • SUBJECT OF A SIX-PART SUPER SOUL PODCAST SERIES HOSTED BY OPRAH WINFREY From the New York Times-bestselling author of Cutting for Stone comes a stunning and magisterial epic of love, faith, and medicine, set in Kerala, South India, following three generations of a family seeking the answers to a strange secret“One of the best books I’ve read in my entire life. It’s epic. It’s transportive . . . It was unputdownable!” — Oprah Winfrey, OprahDaily.comThe Covenant of Wateris the long-awaited new novel by Abraham Verghese, the author of the major word-of-mouth bestseller Cutting for Stone, which has sold over 1.5 million copies in the United States alone and remained on the New York Times bestseller list for over two years.Spanning the years 1900 to 1977, The Covenant of Water is set in Kerala, on South India’s Malabar Coast, and follows three generations of a family that suffers a peculiar affliction: in every generation, at least one person dies by drowning—and in Kerala, water is everywhere. At the turn of the century, a twelve-year-old girl from Kerala’s long-existing Christian community, grieving the death of her father, is sent by boat to her wedding, where she will meet her forty-year-old husband for the first time. From this unforgettable new beginning, the young girl—and future matriarch, known as Big Ammachi—will witness unthinkable changes over the span of her extraordinary life, full of joy and triumph as well as hardship and loss, her faith and love the only constants.A shimmering evocation of a bygone India and of the passage of time itself, The Covenant of Water is a hymn to progress in medicine and to human understanding, and a humbling testament to the difficulties undergone by past generations for the sake of those alive today. It is one of the most masterful literary novels published in recent years.",
"rating": 4.8,
"category": "Fiction & literature",
"author": "Abraham Verghese",
"original_price": "$17.60",
"extracted_original_price": 17.6,
"price": "$9.24",
"extracted_price": 9.24,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/_MO5EAAAQBAJ?fife"
},
{
"title": "Lessons in Chemistry: A Novel",
"link": "https://play.google.com/store/books/details/Bonnie_Garmus_Lessons_in_Chemistry?id=Ayk3EAAAQBAJ",
"product_id": "Ayk3EAAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&gl=us&hl=en&platform=phone&product_id=Ayk3EAAAQBAJ&sort_by=1&store=books",
"description": "#1 NEW YORK TIMES BESTSELLER • GMA BOOK CLUB PICK • Meet Elizabeth Zott: “a gifted research chemist, absurdly self-assured and immune to social convention” (The Washington Post) in 1960s California whose career takes a detour when she becomes the unlikely star of a beloved TV cooking show. • APPLE TV+ SERIES COMING LATER THIS YEAR This novel is “irresistible, satisfying and full of fuel” (The New York Times Book Review) and “witty, sometimes hilarious...the Catch-22 of early feminism” (Stephen King, via Twitter).A BEST BOOK OF THE YEAR: The New York Times, Washington Post, NPR, Oprah Daily, Entertainment Weekly, Newsweek Chemist Elizabeth Zott is not your average woman. In fact, Elizabeth Zott would be the first to point out that there is no such thing as an average woman. But it’s the early 1960s and her all-male team at Hastings Research Institute takes a very unscientific view of equality. Except for one: Calvin Evans; the lonely, brilliant, Nobel–prize nominated grudge-holder who falls in love with—of all things—her mind. True chemistry results. But like science, life is unpredictable. Which is why a few years later Elizabeth Zott finds herself not only a single mother, but the reluctant star of America’s most beloved cooking show Supper at Six. Elizabeth’s unusual approach to cooking (“combine one tablespoon acetic acid with a pinch of sodium chloride”) proves revolutionary. But as her following grows, not everyone is happy. Because as it turns out, Elizabeth Zott isn’t just teaching women to cook. She’s daring them to change the status quo. Laugh-out-loud funny, shrewdly observant, and studded with a dazzling cast of supporting characters, Lessons in Chemistry is as original and vibrant as its protagonist.",
"rating": 4.6,
"category": "Fiction & literature",
"author": "Bonnie Garmus",
"price": "$14.99",
"extracted_price": 14.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/Ayk3EAAAQBAJ?fife"
},
{
"title": "Happy Place",
"link": "https://play.google.com/store/books/details/Emily_Henry_Happy_Place?id=-Wd9EAAAQBAJ",
"product_id": "-Wd9EAAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&gl=us&hl=en&platform=phone&product_id=-Wd9EAAAQBAJ&sort_by=1&store=books",
"description": "INSTANT #1 NEW YORK TIMES BESTSELLER!“The beach-read master hooks us again.\"—People Named a Most Anticipated Book of 2023 by BuzzFeed ∙ Paste Magazine ∙ Elle ∙ Southern Living ∙ SheReads ∙ Culturess ∙ Medium ∙ Her Campus ∙ Readers Digest ∙ Zibby Mag and more!A couple who broke up months ago pretend to still be together for their annual weeklong vacation with their best friends in this glittering and wise new novel from #1 New York Times bestselling author Emily Henry. Harriet and Wyn have been the perfect couple since they met in college—they go together like salt and pepper, honey and tea, lobster and rolls. Except, now—for reasons they’re still not discussing—they don’t. They broke up five months ago. And still haven’t told their best friends. Which is how they find themselves sharing a bedroom at the Maine cottage that has been their friend group’s yearly getaway for the last decade. Their annual respite from the world, where for one vibrant, blissful week they leave behind their daily lives; have copious amounts of cheese, wine, and seafood; and soak up the salty coastal air with the people who understand them most. Only this year, Harriet and Wyn are lying through their teeth while trying not to notice how desperately they still want each other. Because the cottage is for sale and this is the last week they’ll all have together in this place. They can’t stand to break their friends’ hearts, and so they’ll play their parts. Harriet will be the driven surgical resident who never starts a fight, and Wyn will be the laid-back charmer who never lets the cracks show. It’s a flawless plan (if you look at it from a great distance and through a pair of sunscreen-smeared sunglasses). After years of being in love, how hard can it be to fake it for one week…in front of those who know you best?",
"rating": 4.3,
"category": "Romance",
"author": "Emily Henry",
"price": "$11.99",
"extracted_price": 11.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/-Wd9EAAAQBAJ?fife"
},
...
],
],
"serpapi_pagination": {
"next": "https://serpapi.com/search.json?engine=google_play_books&gl=us&hl=en&next_page_token=Cgiq5rbCAwIIDxAL",
"next_page_token": "Cgiq5rbCAwIIDxAL"
}
}
}
List Type Organic results overview for Google Play Books with see_more_token(Plain Search)
{
"search_metadata": {
"id": "641a5b93914a81625682d900",
"status": "Success",
"json_endpoint": "https://serpapi.com/searches/52e0a1956f3573f2/641a5b93914a81625682d900.json",
"created_at": "2023-03-22 01:36:19 UTC",
"processed_at": "2023-03-22 01:36:19 UTC",
"google_play_books_url": "https://play.google.com/store/books/collection/cluster?hl=en&gl=us&gsr=CjeyAjQKLAomcHJvbW90aW9uX2Vib29rc19fZGVidXRfYXV0aG9yX2NsdXN0ZXIQRBgBIgQIBQgs:S:ANO1ljJzTCM",
"raw_html_file": "https://serpapi.com/searches/52e0a1956f3573f2/641a5b93914a81625682d900.html",
"total_time_taken": 0.79
},
"search_parameters": {
"engine": "google_play_books",
"see_more_token": "CjeyAjQKLAomcHJvbW90aW9uX2Vib29rc19fZGVidXRfYXV0aG9yX2NsdXN0ZXIQRBgBIgQIBQgs:S:ANO1ljJzTCM",
"hl": "en",
"gl": "us"
},
"organic_results": [
{
"title": "Fresh fiction from new voices",
"items": [
{
"title": "The House in the Pines: A Novel",
"link": "https://play.google.com/store/books/details/Ana_Reyes_The_House_in_the_Pines?id=LpVnEAAAQBAJ",
"product_id": "LpVnEAAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=LpVnEAAAQBAJ",
"rating": 4.4,
"author": "Ana Reyes",
"category": "Fiction & literature",
"price": "$14.99",
"extracted_price": 14.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/LpVnEAAAQBAJ?fife=w256-h256",
"description": "An instant New York Times bestseller!\"This is an absolute, can’t-put-it-down thriller...It’s truly a wild ride that had me flying through chapter after chapter—which I think is the perfect way to kick off your year of reading.\" —Reese Witherspoon (Reese’s Book Club Jan ’23 Pick)Armed with only hazy memories, a woman who long ago witnessed her friend’s sudden, mysterious death, and has since spent her life trying to forget, sets out to track down answers. What she uncovers, deep in the woods, is hardly to be believed....Maya was a high school senior when her best friend, Aubrey, mysteriously dropped dead in front of the enigmatic man named Frank whom they’d been spending time with all summer. Seven years later, Maya lives in Boston with a loving boyfriend and is kicking the secret addiction that has allowed her to cope with what happened years ago, the gaps in her memories, and the lost time that she can’t account for. But her past comes rushing back when she comes across a recent YouTube video in which a young woman suddenly keels over and dies in a diner while sitting across from none other than Frank. Plunged into the trauma that has defined her life, Maya heads to her Berkshires hometown to relive that fateful summer—the influence Frank once had on her and the obsessive jealousy that nearly destroyed her friendship with Aubrey. At her mother’s house, she excavates fragments of her past and notices hidden messages in her deceased Guatemalan father’s book that didn’t stand out to her earlier. To save herself, she must understand a story written before she was born, but time keeps running out, and soon, all roads are leading back to Frank’s cabin.... Utterly unique and captivating, The House in the Pines keeps you guessing about whether we can ever fully confront the past and return home."
},
{
"title": "Pineapple Street: A Novel",
"link": "https://play.google.com/store/books/details/Jenny_Jackson_Pineapple_Street?id=sMxzEAAAQBAJ",
"product_id": "sMxzEAAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=sMxzEAAAQBAJ",
"rating": 4,
"author": "Jenny Jackson",
"category": "Fiction & literature",
"price": "$14.99",
"extracted_price": 14.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/sMxzEAAAQBAJ?fife=w256-h256",
"description": "A Good Morning America Book Club Pick“A vibrant and hilarious debut…Pineapple Street is riveting, timely, hugely entertaining and brimming with truth.” —Cynthia D’Aprix Sweeney, New York Times bestselling author of The Nest“A delicious new Gilded Age family drama… a guilty pleasure that also feels like a sociological text.” —VogueA deliciously funny, sharply observed debut of family, love, and class, this zeitgeisty novel follows three women in one wealthy Brooklyn clanDarley, the eldest daughter in the well-connected old money Stockton family, followed her heart, trading her job and her inheritance for motherhood but giving up far too much in the process; Sasha, a middle-class New England girl, has married into the Brooklyn Heights family, and finds herself cast as the arriviste outsider; and Georgiana, the baby of the family, has fallen in love with someone she can’t have, and must decide what kind of person she wants to be. Rife with the indulgent pleasures of life among New York’s one-percenters, Pineapple Street is a smart, escapist novel that sparkles with wit. Full of recognizable, loveable—if fallible—characters, it’s about the peculiar unknowability of someone else’s family, the miles between the haves and have-nots, and the insanity of first love—all wrapped in a story that is a sheer delight."
},
{
"title": "Weyward: A Novel",
"link": "https://play.google.com/store/books/details/Emilia_Hart_Weyward?id=rodrEAAAQBAJ",
"product_id": "rodrEAAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=rodrEAAAQBAJ",
"rating": 4.5,
"author": "Emilia Hart",
"category": "Fiction & literature",
"price": "$14.99",
"extracted_price": 14.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/rodrEAAAQBAJ?fife=w256-h256",
"description": "INSTANT NEW YORK TIMES BESTSELLER\"A brave and original debut, Weyward is a spellbinding story about what may transpire when the natural world collides with a legacy of witchcraft.\" ––Sarah Penner, New York Times bestselling author of The Lost ApothecaryI am a Weyward, and wild inside. 2019: Under cover of darkness, Kate flees London for ramshackle Weyward Cottage, inherited from a great aunt she barely remembers. With its tumbling ivy and overgrown garden, the cottage is worlds away from the abusive partner who tormented Kate. But she begins to suspect that her great aunt had a secret. One that lurks in the bones of the cottage, hidden ever since the witch-hunts of the 17th century.1619: Altha is awaiting trial for the murder of a local farmer who was stampeded to death by his herd. As a girl, Altha’s mother taught her their magic, a kind not rooted in spell casting but in a deep knowledge of the natural world. But unusual women have always been deemed dangerous, and as the evidence for witchcraft is set out against Altha, she knows it will take all of her powers to maintain her freedom.1942: As World War II rages, Violet is trapped in her family's grand, crumbling estate. Straitjacketed by societal convention, she longs for the robust education her brother receives––and for her mother, long deceased, who was rumored to have gone mad before her death. The only traces Violet has of her are a locket bearing the initial W and the word weyward scratched into the baseboard of her bedroom.Weaving together the stories of three extraordinary women across five centuries, Emilia Hart's Weyward is an enthralling novel of female resilience and the transformative power of the natural world."
},
...
],
],
"serpapi_pagination": {
"next": "https://serpapi.com/search.json?engine=google_play_books&gl=us&hl=en&next_page_token=Cgj6noGdAwIIFBAUGjeyAjQKLAomcHJvbW90aW9uX2Vib29rc19fZGVidXRfYXV0aG9yX2NsdXN0ZXIQRBgBIgQIBQgs&see_more_token=CjeyAjQKLAomcHJvbW90aW9uX2Vib29rc19fZGVidXRfYXV0aG9yX2NsdXN0ZXIQRBgBIgQIBQgs%3AS%3AANO1ljJzTCM",
"next_page_token": "Cgj6noGdAwIIFBAUGjeyAjQKLAomcHJvbW90aW9uX2Vib29rc19fZGVidXRfYXV0aG9yX2NsdXN0ZXIQRBgBIgQIBQgs"
}
}
}
Top Charts results overview for Google Play Books with chart(Plain Search)
{
"search_metadata": {
"id": "64bfe1b3914a8155cefdfed0",
"status": "Success",
"json_endpoint": "https://serpapi.com/searches/1b481a56fca8ba8a/64bfe1b3914a8155cefdfed0.json",
"created_at": "2023-07-25 14:52:35 UTC",
"processed_at": "2023-07-25 14:52:35 UTC",
"google_play_books_url": "https://play.google.com/store/books?hl=en&gl=us",
"raw_html_file": "https://serpapi.com/searches/1b481a56fca8ba8a/64bfe1b3914a8155cefdfed0.html",
"prettify_html_file": "https://serpapi.com/searches/1b481a56fca8ba8a/64bfe1b3914a8155cefdfed0.prettify",
"total_time_taken": 1.37
},
"search_parameters": {
"engine": "google_play_books",
"hl": "en",
"gl": "us",
"chart": "top_deals"
},
"top_charts": [
{
"title": "52 Small Changes for the Mind: Improve Memory * Minimize Stress * Increase Productivity * Boost Happiness",
"author": "Brett Blumenthal",
"extension": {
"name": "USD"
},
"link": "https://play.google.com/store/books/details/Brett_Blumenthal_52_Small_Changes_for_the_Mind?id=VsoxCAAAQBAJ",
"product_id": "VsoxCAAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&gl=us&hl=en&platform=phone&product_id=VsoxCAAAQBAJ&sort_by=1&store=books",
"description": "Small changes work. In this practical ebook, wellness expert Brett Blumenthal reveals how to hone in on the mind as the foundation of overall health and well-being. She presents one small, achievable change every week—from developing music appreciation to eating brain-boosting foods, practicing mono-tasking, incorporating play, and more. The accumulation of these lifestyle changes ultimately leads to improved memory, less stress, increased productivity, and sustained happiness. Backed by research from leading experts and full of helpful charts and worksheets, 52 Small Changes for the Mind provides a road map to a better life—and proves that the journey can be as rewarding as the destination.",
"rating": 4.3,
"category": "Health, mind & body",
"original_price": "$9.59",
"extracted_original_price": 9.59,
"price": "$1.99",
"extracted_price": 1.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/VsoxCAAAQBAJ?fife"
},
{
"title": "DCeased: Issues 1-6",
"author": "Tom Taylor",
"extension": {
"name": "USD"
},
"link": "https://play.google.com/store/books/details/Tom_Taylor_DCeased?id=CBbADwAAQBAJ",
"product_id": "CBbADwAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&gl=us&hl=en&platform=phone&product_id=CBbADwAAQBAJ&sort_by=1&store=books",
"description": "What happens to the World's Finest if the world ends? With death spreading across the planet, who will live and who will turn in this apocalyptic tale of heroism, sacrifice and annihilation? Fighting time, each other and all of humanity, Earth's greatest heroes must rally together for what may very well be their last chance to save the world from the most terrible plague humanity has ever seen. The Anti-Life Equation has been released and is ravaging the world at the viral speed of social media. Once exposed, victims lose their minds, violently attacking all around them. The heroes of Earth are fighting a losing battle to save the world... and themselves! Collects DCEASED issues #1-6 and DCEASED: A GOOD DAY TO DIE #1.",
"rating": 4.5,
"category": "Comics",
"original_price": "$19.99",
"extracted_original_price": 19.99,
"price": "$4.99",
"extracted_price": 4.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/CBbADwAAQBAJ?fife"
},
{
"title": "Berserk",
"author": "Kentaro Miura",
"extension": {
"name": "USD"
},
"link": "https://play.google.com/store/books/details/Kentaro_Miura_Berserk_Volume_1?id=ewQtDwAAQBAJ",
"product_id": "ewQtDwAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&gl=us&hl=en&platform=phone&product_id=ewQtDwAAQBAJ&sort_by=1&store=books",
"description": "Created by Kentaro Miura, Berserk is manga mayhem to the extreme - violent, horrifying, and mercilessly funny - and the wellspring for the internationally popular anime series. Not for the squeamish or the easily offended, Berserk asks for no quarter - and offers none! His name is Guts, the Black Swordsman, a feared warrior spoken of only in whispers. Bearer of a gigantic sword, an iron hand, and the scars of countless battles and tortures, his flesh is also indelibly marked with The Brand, an unholy symbol that draws the forces of darkness to him and dooms him as their sacrifice. But Guts won't take his fate lying down; he'll cut a crimson swath of carnage through the ranks of the damned - and anyone else foolish enough to oppose him! Accompanied by Puck the Elf, more an annoyance than a companion, Guts relentlessly follows a dark, bloodstained path that leads only to death...or vengeance.",
"rating": 4.8,
"category": "Manga",
"original_price": "$8.99",
"extracted_original_price": 8.99,
"price": "$4.99",
"extracted_price": 4.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/ewQtDwAAQBAJ?fife"
},
...
],
}
Rows Type Organic results overview for Google Play Books with books_category(Category Search)
{
"search_metadata": {
"id": "641a5cda914a81625518193f",
"status": "Success",
"json_endpoint": "https://serpapi.com/searches/f28cc7db99b4f52c/641a5cda914a81625518193f.json",
"created_at": "2023-03-22 01:41:46 UTC",
"processed_at": "2023-03-22 01:41:46 UTC",
"google_play_books_url": "https://play.google.com/store/books/category/coll_1665?hl=en&gl=us",
"raw_html_file": "https://serpapi.com/searches/f28cc7db99b4f52c/641a5cda914a81625518193f.html",
"total_time_taken": 0.83
},
"search_parameters": {
"engine": "google_play_books",
"hl": "en",
"gl": "us",
"books_category": "coll_1665"
},
"chart_options": [
{
"text": "Top selling",
"value": "featured"
},
{
"text": "New releases",
"value": "movers_shakers"
}
],
"organic_results": [
{
"title": "Top selling",
"serpapi_section_pagination": {
"next": "https://serpapi.com/search.json?books_category=coll_1665&engine=google_play_books&gl=us&hl=en§ion_page_token=Cgj6noGdAwIIFBAUGkCyAj0KNQovcHJvbW90aW9uXzEwMDFjYzVfYXJ0c19lbnRlcnRhaW5tZW50X3RvcHNlbGxpbmcQRBgBIgQIBQgs",
"section_page_token": "Cgj6noGdAwIIFBAUGkCyAj0KNQovcHJvbW90aW9uXzEwMDFjYzVfYXJ0c19lbnRlcnRhaW5tZW50X3RvcHNlbGxpbmcQRBgBIgQIBQgs"
},
"items": [
{
"title": "The Basic Laws of Human Stupidity",
"link": "https://play.google.com/store/books/details/Carlo_M_Cipolla_The_Basic_Laws_of_Human_Stupidity?id=9E3CDwAAQBAJ",
"product_id": "9E3CDwAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=9E3CDwAAQBAJ",
"rating": 4.7,
"author": "Carlo M. Cipolla",
"category": "Business & investing",
"original_price": "$7.99",
"extracted_original_price": 7.99,
"price": "$4.99",
"extracted_price": 4.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/9E3CDwAAQBAJ?fife=w256-h256",
"description": "\"A masterly book\" —Nassim Nicholas Taleb, author of The Black Swan \"A classic\" —Simon Kuper, Financial Times An economist explains five laws that confirm our worst fears: stupid people can and do rule the worldThroughout history, a powerful force has hindered the growth of human welfare and happiness. It is more powerful than the Mafia or the military. It has global catastrophic effects and can be found anywhere from the world's most powerful boardrooms to your local bar. It is human stupidity. Carlo M. Cipolla, noted professor of economic history at the UC Berkeley, created this vitally important book in order to detect and neutralize its threat. Both hilarious and dead serious, it will leave you better equipped to confront political realities, unreasonable colleagues, or your next dinner with your in-laws. The Laws: 1. Everyone underestimates the number of stupid individuals among us. 2. The probability that a certain person is stupid is independent of any other characteristic of that person. 3. A stupid person is a person who causes losses to another person while deriving no gain and even possibly incurring losses themselves. 4. Non-stupid people always underestimate the damaging power of stupid individuals. 5. A stupid person is the most dangerous type of person."
},
{
"title": "The Heroin Diaries: Ten Year Anniversary Edition: A Year in the Life of a Shattered Rock Star",
"link": "https://play.google.com/store/books/details/Nikki_Sixx_The_Heroin_Diaries_Ten_Year_Anniversary?id=cSgxcelRymYC",
"product_id": "cSgxcelRymYC",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=cSgxcelRymYC",
"rating": 4.7,
"author": "Nikki Sixx",
"category": "Biographies & memoirs",
"price": "$9.99",
"extracted_price": 9.99,
"thumbnail": "https://books.google.com/books/content/images/frontcover/cSgxcelRymYC?fife=w256-h256",
"description": "The shocking, gripping, and at times darkly hilarious bestselling memoir of Nikki Sixx’s yearlong war with a vicious heroin addiction, featuring exclusive new content.When Mötley Crüe was at the height of its fame, there wasn’t any drug Nikki Sixx wouldn’t do. He spent days—sometimes alone, sometimes with other addicts, friends, and lovers—in a coke- and heroin-fueled daze. The highs were high, and Nikki's journal entries reveal some euphoria and joy. But the lows were lower, often ending with Nikki in his closet, surrounded by drug paraphernalia and wrapped in paranoid delusions. Here, Nikki shares the diary entries—some poetic, some scatterbrained, some bizarre—of those dark times. Joining him are Tommy Lee, Vince Neil, Mick Mars, Slash, Rick Nielsen, Bob Rock, and a host of ex-managers, ex-lovers, and more. Brutally honest, utterly riveting, and surprisingly moving, The Heroin Diaries follows Nikki during the year he plunged to rock bottom—and his courageous decision to pick himself up and start living again."
},
{
"title": "What If? 2: Additional Serious Scientific Answers to Absurd Hypothetical Questions",
"link": "https://play.google.com/store/books/details/Randall_Munroe_What_If_2?id=c2RaEAAAQBAJ",
"product_id": "c2RaEAAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=c2RaEAAAQBAJ",
"rating": 4.3,
"author": "Randall Munroe",
"category": "Arts & entertainment",
"price": "$15.99",
"extracted_price": 15.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/c2RaEAAAQBAJ?fife=w256-h256",
"description": "AN INSTANT NEW YORK TIMES BESTSELLER!An NPR Best Book of 2022\"The questions throughout What If? 2 are equal parts brilliant, gross, and wonderfully absurd and the answers are thorough, deeply researched, and great fun. . . . Science isn’t easy, but in Munroe’s capable hands, it surely can be fun.\" —TIMEThe #1 New York Times bestselling author of What If? and How To answers more of the weirdest questions you never thought to ask The millions of people around the world who read and loved What If? still have questions, and those questions are getting stranger. Thank goodness xkcd creator Randall Munroe is here to help. Planning to ride a fire pole from the Moon back to Earth? The hardest part is sticking the landing. Hoping to cool the atmosphere by opening everyone’s freezer door at the same time? Maybe it’s time for a brief introduction to thermodynamics. Want to know what would happen if you rode a helicopter blade, built a billion-story building, made a lava lamp out of lava, or jumped on a geyser as it erupted? Okay, if you insist.Before you go on a cosmic road trip, feed the residents of New York City to a T. rex, or fill every church with bananas, be sure to consult this practical guide for impractical ideas. Unfazed by absurdity, Munroe consults the latest research on everything from swing-set physics to airliner catapult–design to answer his readers’ questions, clearly and concisely, with illuminating and occasionally terrifying illustrations. As he consistently demonstrates, you can learn a lot from examining how the world might work in very specific extreme circumstances."
},
...
],
],
"serpapi_pagination": {
"next": "https://serpapi.com/search.json?engine=google_play_books&gl=us&hl=en&next_page_token=Cgj6noGdAwIIFBAUGjeyAjQKLAomcHJvbW90aW9uX2Vib29rc19fZGVidXRfYXV0aG9yX2NsdXN0ZXIQRBgBIgQIBQgs&see_more_token=CjeyAjQKLAomcHJvbW90aW9uX2Vib29rc19fZGVidXRfYXV0aG9yX2NsdXN0ZXIQRBgBIgQIBQgs%3AS%3AANO1ljJzTCM",
"next_page_token": "Cgj6noGdAwIIFBAUGjeyAjQKLAomcHJvbW90aW9uX2Vib29rc19fZGVidXRfYXV0aG9yX2NsdXN0ZXIQRBgBIgQIBQgs"
}
}
}
Top Charts results overview for Google Play Books with books_category(Category Search)
{
"search_metadata": {
"id": "641a5d90914a81625682d901",
"status": "Success",
"json_endpoint": "https://serpapi.com/searches/420ae901dfcaead8/641a5d90914a81625682d901.json",
"created_at": "2023-03-22 01:44:48 UTC",
"processed_at": "2023-03-22 01:44:48 UTC",
"google_play_books_url": "https://play.google.com/store/books/category/coll_1690?hl=en&gl=us",
"raw_html_file": "https://serpapi.com/searches/420ae901dfcaead8/641a5d90914a81625682d901.html",
"prettify_html_file": "https://serpapi.com/searches/420ae901dfcaead8/641a5d90914a81625682d901.prettify",
"total_time_taken": 1.21
},
"search_parameters": {
"engine": "google_play_books",
"hl": "en",
"gl": "us",
"books_category": "coll_1690"
},
"top_charts": [
{
"title": "Harry Potter and the Sorcerer's Stone",
"link": "https://play.google.com/store/books/details/J_K_Rowling_Harry_Potter_and_the_Sorcerer_s_Stone?id=wrOQLV6xB-wC",
"product_id": "wrOQLV6xB-wC",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=wrOQLV6xB-wC",
"description": "Turning the envelope over, his hand trembling, Harry saw a purple wax seal bearing a coat of arms; a lion, an eagle, a badger and a snake surrounding a large letter 'H'.Harry Potter has never even heard of Hogwarts when the letters start dropping on the doormat at number four, Privet Drive. Addressed in green ink on yellowish parchment with a purple seal, they are swiftly confiscated by his grisly aunt and uncle. Then, on Harry's eleventh birthday, a great beetle-eyed giant of a man called Rubeus Hagrid bursts in with some astonishing news: Harry Potter is a wizard, and he has a place at Hogwarts School of Witchcraft and Wizardry. An incredible adventure is about to begin!Having become classics of our time, the Harry Potter eBooks never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new readers.",
"rating": 4.7,
"category": "Children's books",
"author": "J.K. Rowling",
"extension": {
"name": "USD"
},
"price": "$9.99",
"extracted_price": 9.99,
"thumbnail": "https://books.google.com/books/content/images/frontcover/wrOQLV6xB-wC?fife"
},
{
"title": "Harry Potter and the Half-Blood Prince",
"link": "https://play.google.com/store/books/details/J_K_Rowling_Harry_Potter_and_the_Half_Blood_Prince?id=R7YsowJI9-IC",
"product_id": "R7YsowJI9-IC",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=R7YsowJI9-IC",
"description": "There it was, hanging in the sky above the school: the blazing green skull with a serpent tongue, the mark Death Eaters left behind whenever they had entered a building... wherever they had murdered...When Dumbledore arrives at Privet Drive one summer night to collect Harry Potter, his wand hand is blackened and shrivelled, but he does not reveal why. Secrets and suspicion are spreading through the wizarding world, and Hogwarts itself is not safe. Harry is convinced that Malfoy bears the Dark Mark: there is a Death Eater amongst them. Harry will need powerful magic and true friends as he explores Voldemort's darkest secrets, and Dumbledore prepares him to face his destiny...Having become classics of our time, the Harry Potter eBooks never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new readers.",
"rating": 4.7,
"category": "Children's books",
"author": "J.K. Rowling",
"extension": {
"name": "USD"
},
"price": "$9.99",
"extracted_price": 9.99,
"thumbnail": "https://books.google.com/books/content/images/frontcover/R7YsowJI9-IC?fife"
},
{
"title": "Harry Potter and the Chamber of Secrets",
"link": "https://play.google.com/store/books/details/J_K_Rowling_Harry_Potter_and_the_Chamber_of_Secret?id=5iTebBW-w7QC",
"product_id": "5iTebBW-w7QC",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=5iTebBW-w7QC",
"description": "'There is a plot, Harry Potter. A plot to make most terrible things happen at Hogwarts School of Witchcraft and Wizardry this year.'Harry Potter's summer has included the worst birthday ever, doomy warnings from a house-elf called Dobby, and rescue from the Dursleys by his friend Ron Weasley in a magical flying car! Back at Hogwarts School of Witchcraft and Wizardry for his second year, Harry hears strange whispers echo through empty corridors - and then the attacks start. Students are found as though turned to stone... Dobby's sinister predictions seem to be coming true.Having become classics of our time, the Harry Potter eBooks never fail to bring comfort and escapism. With their message of hope, belonging and the enduring power of truth and love, the story of the Boy Who Lived continues to delight generations of new readers.",
"rating": 4.7,
"category": "Children's books",
"author": "J.K. Rowling",
"extension": {
"name": "USD"
},
"price": "$9.99",
"extracted_price": 9.99,
"thumbnail": "https://books.google.com/books/content/images/frontcover/5iTebBW-w7QC?fife"
},
...
],
}
Rows Type Organic results overview for Google Play Books with books_category, and age(Category Search)
{
"search_metadata": {
"id": "6420917b40c4a902d5d2156e",
"status": "Success",
"json_endpoint": "https://serpapi.com/searches/b6849532a7b6c022/6420917b40c4a902d5d2156e.json",
"created_at": "2023-03-26 18:39:55 UTC",
"processed_at": "2023-03-26 18:39:55 UTC",
"google_play_books_url": "https://play.google.com/store/books/category/coll_1689?hl=en&gl=us&age=AGE_RANGE1",
"raw_html_file": "https://serpapi.com/searches/b6849532a7b6c022/6420917b40c4a902d5d2156e.html",
"total_time_taken": 1.04
},
"search_parameters": {
"engine": "google_play_books",
"hl": "en",
"gl": "us",
"books_category": "coll_1689",
"age": "AGE_RANGE1"
},
"organic_results": [
{
"title": "New & notable",
"serpapi_section_pagination": {
"next": "https://serpapi.com/search.json?age=AGE_RANGE1&books_category=coll_1689&engine=google_play_books&gl=us&hl=en§ion_page_token=Cgj6noGdAwIIFBAUGosBsgKHAQojCh1wcm9tb3Rpb25fMTAwMTU5N19uZXdfbm90YWJsZRBEGAESWApSZmFtaWx5X2FnZV9yYW5nZTFfZGV2aWNlX2ZlYXR1cmVkX2NvbGxfMTY4OV9wcm9tb3Rpb25fMTAwMTU5N19uZXdfbm90YWJsZV8xLTctMS02OBAMGAEiBggFCCwQAQ",
"section_page_token": "Cgj6noGdAwIIFBAUGosBsgKHAQojCh1wcm9tb3Rpb25fMTAwMTU5N19uZXdfbm90YWJsZRBEGAESWApSZmFtaWx5X2FnZV9yYW5nZTFfZGV2aWNlX2ZlYXR1cmVkX2NvbGxfMTY4OV9wcm9tb3Rpb25fMTAwMTU5N19uZXdfbm90YWJsZV8xLTctMS02OBAMGAEiBggFCCwQAQ"
},
"items": [
{
"title": "Bluey: Mum School",
"link": "https://play.google.com/store/books/details/Penguin_Young_Readers_Licenses_Bluey_Mum_School?id=Ih11EAAAQBAJ",
"product_id": "Ih11EAAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&gl=us&hl=en&product_id=Ih11EAAAQBAJ&store=books",
"author": "Penguin Young Readers Licenses",
"category": "Fiction",
"price": "$6.99",
"extracted_price": 6.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/Ih11EAAAQBAJ?fife=w256-h256",
"description": "Play Mum School with Bluey in this fun storybook! Based on the wildly successful animated series Bluey, as seen on Disney+Bluey wants to play Mum School instead of taking her bath. But when Bluey's balloon kids go out of control, Bluey doesn't know what to do! Will Bluey figure out what they need before bathtime?"
},
{
"title": "Dads Can Do It All!",
"link": "https://play.google.com/store/books/details/Ted_Maass_Dads_Can_Do_It_All?id=Fh11EAAAQBAJ",
"product_id": "Fh11EAAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&gl=us&hl=en&product_id=Fh11EAAAQBAJ&store=books",
"author": "Ted Maass",
"category": "Children's books",
"price": "$8.99",
"extracted_price": 8.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/Fh11EAAAQBAJ?fife=w256-h256",
"description": "Celebrate dads and all the amazing things they do with this perfect gift for Father’s Day—complete with a bookplate for personalization!This year, celebrate Dad with this adorable board book young readers can personally inscribe and dedicate to their dad: the superhero! Beautiful illustrations and inspiring, rhyming verses make this the perfect gift for dads and for birthdays year-round. Young ones will love sharing this book with Dad and learning all the exciting things fathers can do—and everything they can do, too!"
},
{
"title": "The Hare-Shaped Hole",
"link": "https://play.google.com/store/books/details/John_Dougherty_The_Hare_Shaped_Hole?id=bxabEAAAQBAJ",
"product_id": "bxabEAAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&gl=us&hl=en&product_id=bxabEAAAQBAJ&store=books",
"author": "John Dougherty",
"category": "Children's books",
"price": "$9.56",
"extracted_price": 9.56,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/bxabEAAAQBAJ?fife=w256-h256",
"description": "\"A beautiful, gentle, rhyming exploration of grief and mourning.\" - Joe Coelho, Waterstones Children's LaureateThe Hare-Shaped Hole is a beautiful, touching, and poignant picture book which gently explores themes of grief and loss.Hertle and Bertle were always a pair, though one was a turtle and one was a hare. They were utterly buddies, and best friends forever and whenever you looked, you would find them together... until quite unexpectedly... the end came. When Hertle disappears for good, Bertle can only see a Hertle-shaped hole where his friend should be. He pleads with it, get angry with it, but the hole still won't bring his Hertle back. It seems like hope is lost... until Gerda the kindly bear finds him. She explains that he must fill the hole with his memories of Hertle. And slowly... Bertle begins to feel a little bit better.Powerful and moving text from children's author and poet John Dougherty is paired perfectly with warm illustrations from the wonderfully talented Thomas Docherty in a thoughtful and sensitive approach to this difficult topic. This moving picture book can be used as part of a gentle conversation about death and grief with children."
},
...
],
],
"serpapi_pagination": {
"next": "https://serpapi.com/search.json?age=AGE_RANGE1&books_category=coll_1689&engine=google_play_books&gl=us&hl=en&next_page_token=Cgiq5rbCAwIIBRAE",
"next_page_token": "Cgiq5rbCAwIIBRAE"
}
}
}
Rows Type Organic results overview for Google Play Books with q(Query Search)
{
"search_metadata": {
"id": "641a540a914a81625410d175",
"status": "Success",
"json_endpoint": "https://serpapi.com/searches/e7a0a203396aa757/641a540a914a81625410d175.json",
"created_at": "2023-03-22 01:04:10 UTC",
"processed_at": "2023-03-22 01:04:10 UTC",
"google_play_books_url": "https://play.google.com/store/search?q=Coffee&c=books&hl=en&gl=us",
"raw_html_file": "https://serpapi.com/searches/e7a0a203396aa757/641a540a914a81625410d175.html",
"total_time_taken": 0.85
},
"search_parameters": {
"engine": "google_play_books",
"q": "Coffee",
"hl": "en",
"gl": "us"
},
"organic_results": [
{
"title": "Ebooks",
"serpapi_section_pagination": {
"next": "https://serpapi.com/search.json?engine=google_play_books&gl=us&hl=en&q=Coffee§ion_page_token=Cgj6noGdAwIIFBAUGg-iAQwKBkNvZmZlZRgBMAU6EAoICgZDb2ZmZWUQABgCIAE",
"section_page_token": "Cgj6noGdAwIIFBAUGg-iAQwKBkNvZmZlZRgBMAU6EAoICgZDb2ZmZWUQABgCIAE"
},
"items": [
{
"title": "The World Atlas of Coffee: From beans to brewing - coffees explored, explained and enjoyed",
"link": "https://play.google.com/store/books/details/James_Hoffmann_The_World_Atlas_of_Coffee?id=wqxaDwAAQBAJ",
"product_id": "wqxaDwAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=wqxaDwAAQBAJ",
"rating": 4.5,
"author": "James Hoffmann",
"category": "Cooking, food & wine",
"price": "$7.99",
"extracted_price": 7.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/wqxaDwAAQBAJ?fife=w256-h256",
"description": "The worldwide bestseller - 1/4 million copies sold'Written by a World Barista Champion and co-founder of the great Square Mile roasters in London, this had a lot to live up to and it certainly does. Highly recommended for anyone into their coffee and interested in finding out more about how it's grown, processed and roasted.' (Amazon customer)'Whether you are an industry professional, a home enthusiast or anything in between, I truly believe this is a MUST read.' (Amazon customer)'Informative, well-written and well presented. Coffee table and reference book - a winner' (Amazon customer)'Very impressive. It's amazing how much territory is covered without overwhelming the reader. The abundant photos and images are absolutely coffee-table-worthy, but this book is so much more. I think it would be enjoyable for an obsessed coffee geek or someone who just enjoys their java.' (Amazon customer)For everyone who wants to understand more about coffee and its wonderful nuances and possibilities, this is the book to have.Coffee has never been better, or more interesting, than it is today. Coffee producers have access to more varieties and techniques than ever before and we, as consumers, can share in that expertise to make sure the coffee we drink is the best we can find. Where coffee comes from, how it was harvested, the roasting process and the water used to make the brew are just a few of the factors that influence the taste of what we drink. Champion barista and coffee expert James Hoffmann examines these key factors, looking at varieties of coffee, the influence of terroir, how it is harvested and processed, the roasting methods used, through to the way in which the beans are brewed.Country by country - from Bolivia to Zambia - he then identifies key characteristics and the methods that determine the quality of that country's output. Along the way we learn about everything from the development of the espresso machine, to why strength guides on supermarket coffee are really not good news. This is the first book to chart the coffee production of over 35 countries, encompassing knowledge never previously published outside the coffee industry."
},
{
"title": "The Blue Bottle Craft of Coffee: Growing, Roasting, and Drinking, with Recipes",
"link": "https://play.google.com/store/books/details/James_Freeman_The_Blue_Bottle_Craft_of_Coffee?id=pLNcuq70KskC",
"product_id": "pLNcuq70KskC",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=pLNcuq70KskC",
"rating": 4.3,
"author": "James Freeman",
"category": "Cooking, food & wine",
"price": "$13.99",
"extracted_price": 13.99,
"thumbnail": "https://books.google.com/books/content/images/frontcover/pLNcuq70KskC?fife=w256-h256",
"description": "One of the country's most celebrated roasters explains how to choose, brew, and enjoy the new breed of artisan coffees at home, along with 40 inventive recipes that incorporate coffee or taste good with a cup.Blue Bottle Coffee Company has quickly become one of America’s most celebrated roasters. Famous for its complex and flavorful coffees, Blue Bottle delights its devoted patrons with exquisite pour-overs, delicious espressi, and specialized brewing methods. Yet as coffee production becomes more sophisticated with specialized extraction techniques and Japanese coffee gadgets, the new artisan coffees can seem out of reach. The Blue Bottle Craft of Coffee explains this new world from farm to cup, exploring the bounty of beans available and the intricate steps that go into sourcing raw coffee from around the globe. Blue Bottle founder James Freeman coaches you through brewing the perfect cup of coffee, using methods as diverse as French press, nel drip, siphon, and more to produce the best flavor. For coffee lovers who want to roll up their sleeves and go deeper, Freeman explains step by step how to roast beans at home using standard kitchen tools—just like he did when starting out. The Blue Bottle Craft of Coffee also introduces a home technique for cupping, the industry method of tasting coffees for quality control, so you can hone your taste and share your meticulously roasted coffee with friends. Rounding out the book are more than thirty inventive recipes from Blue Bottle pastry chef and former Miette bakery owner Caitlin Freeman that incorporate coffee or just taste particularly good with coffee, such as Saffron Vanilla Snickerdoodles, Stout Coffee Cake with Pecan-Caraway Streusel, Affogato with Smoky Almond Ice Cream, Coffee Panna Cotta, and more. With more than one hundred stunning photographs showing coffee’s journey from just-harvested cherry to perfect drink, this distinctive and deep guide to the new breed of amazing coffees from one of the top artisan coffee makers will change the way you think about—and drink—coffee."
},
{
"title": "Craft Coffee: A Manual",
"link": "https://play.google.com/store/books/details/Jessica_Easto_Craft_Coffee?id=hi3bDgAAQBAJ",
"product_id": "hi3bDgAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=hi3bDgAAQBAJ",
"rating": 5,
"author": "Jessica Easto",
"category": "Cooking, food & wine",
"price": "$19.99",
"extracted_price": 19.99,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/hi3bDgAAQBAJ?fife=w256-h256",
"description": "“Build a better brew by mastering 10 manual methods, from French Press to Chemex, with this comprehensive guide.” —Imbibe MagazineNamed a top food & drink book of 2017 by Food Network, Wired, Sprudge, and BooklistThis comprehensive but accessible handbook is for the average coffee lover who wants to make better coffee at home. Unlike other coffee books, this one focuses exclusively on coffee—not espresso—and explores multiple pour-over, immersion, and cold-brew techniques on 10 different devices.Thanks to a small but growing number of dedicated farmers, importers, roasters, and baristas, coffee quality is at an all-time high. But for nonprofessionals, achieving café quality at home can seem out of reach. With dozens of equipment options, conflicting information on how to use that equipment, and an industry language that, at times, doesn’t seem made for the rest of us, it can be difficult to know where to begin.Craft Coffee: A Manual, written by a coffee enthusiast for coffee enthusiasts, provides all the information readers need to discover what they like in a cup of specialty coffee—and how to replicate the perfect cup day after day. From the science of extraction and brewing techniques to choosing equipment and deciphering coffee bags, Craft Coffee focuses on the issues—cost, time, taste, and accessibility—that home coffee brewers negotiate and shows that no matter where you are in your coffee journey, you can make a great cup at home.“Engaging and fun . . . I really can’t recommend Craft Coffee: A Manual enough. If you’re even mildly curious about brewing coffee at home, it’s absolutely worth a read.” —BuzzFeed"
},
...
],
],
}
}
Rows Type Organic results overview for Google Play Books with q, and price(Query Search)
{
"search_metadata": {
"id": "641a5eed914a81625682d903",
"status": "Success",
"json_endpoint": "https://serpapi.com/searches/2ee0290f0121145f/641a5eed914a81625682d903.json",
"created_at": "2023-03-22 01:50:37 UTC",
"processed_at": "2023-03-22 01:50:37 UTC",
"google_play_books_url": "https://play.google.com/store/search?q=Coffee&c=books&hl=en&gl=us&price=1",
"raw_html_file": "https://serpapi.com/searches/2ee0290f0121145f/641a5eed914a81625682d903.html",
"total_time_taken": 0.77
},
"search_parameters": {
"engine": "google_play_books",
"q": "Coffee",
"price": "1",
"hl": "en",
"gl": "us"
},
"organic_results": [
...
{
"title": "Ebooks",
"serpapi_section_pagination": {
"next": "https://serpapi.com/search.json?engine=google_play_books&gl=us&hl=en&price=1&q=Coffee§ion_page_token=Cgj6noGdAwIIFBAUGhOiARAKBkNvZmZlZRgBKgIIATAFOhAKCAoGQ29mZmVlEAAYAiAB",
"section_page_token": "Cgj6noGdAwIIFBAUGhOiARAKBkNvZmZlZRgBKgIIATAFOhAKCAoGQ29mZmVlEAAYAiAB"
},
"items": [
{
"title": "Coffee, Sex and Law (teaser)",
"link": "https://play.google.com/store/books/details/Avril_Rose_Coffee_Sex_and_Law_teaser?id=GJNPDwAAQBAJ",
"product_id": "GJNPDwAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=GJNPDwAAQBAJ",
"rating": 4.2,
"author": "Avril Rose",
"category": "Romance",
"price": "Free",
"extracted_price": 0,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/GJNPDwAAQBAJ?fife=w256-h256",
"description": "Enemies or lovers? Liam, a successful young lawyer, is allergic to love. He’s always between business trips and, devastated by a dark secret, he has put a lock on his heart. That’s the way he likes it. But when he crosses paths with Zoe, all his principles fly out the window. Zoe is the opposite of his usual conquests: natural, funny, impetuous... and she has no plans to make room in her life for a man. *** I watch her delicate hands work over my torso, becoming intoxicated by her scent rising to meet me from her neck. “I’m so sorry,” she insists, now scrubbing the fabric with concentration, taking breaks to dab her forehead with her arm. She’s damaging my designer shirt. Instead of pointing that out to her, I observe her every movement. I surprise her a few times as she nibbles her thumb. A habit that reveals how nervous she actually is. “I’ll pay for the dry cleaning, of course. And free coffee for a week.” I don't reply. I resist the temptation to run my hand through her long, silky hair. I find her beautiful: her fragility, embarrassment, simplicity. “A month?” she offers, obviously worried by my silence. “It’s fine for the coffee. A week and we’re even,” I reassure her. \"For the dry cleaning, I'll take care of it. Don’t worry about the clothes. It could happen to anyone.” She stops and looks at me, smiling, relieved by my pacifist reaction. “I think your shirt is ruined,” she announces, nibbling her lower lip. “Yeah, I think you’re right about that!” I agree, laughing. I’m speechless when she starts working on my pants, kneeling down between my legs. <i>Is this a joke? I thought this kind of thing only happened in movies!</i> Except there’s nothing funny about the position. On the contrary. The pressure she’s putting on my crotch awakens sensations in my entire body. My imagination becomes quickly uncontrollable. I want her. Forbidden thoughts start to creep into my mind. To touch her. Caress her. Kiss her. She suddenly stops, as if she had heard my inappropriate thoughts. Time stands still for a second, and the noise of the café customers dies down. Here we are, the two of us, completely isolated from the rest of the world. *** Love, Law, and Lattes: A brewing romance, Avril Rose, first chapters of the novel."
},
{
"title": "A Honeybun and Coffee (Romantic Suspense with Humor and Mystery)",
"link": "https://play.google.com/store/books/details/Sam_Cheever_A_Honeybun_and_Coffee_Romantic_Suspens?id=761zBgAAQBAJ",
"product_id": "761zBgAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=761zBgAAQBAJ",
"rating": 4.5,
"author": "Sam Cheever",
"extension": {
"name": "Book 1"
},
"category": "Romance",
"price": "Free",
"extracted_price": 0,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/761zBgAAQBAJ?fife=w256-h256",
"description": "These Honeybuns are sugar free, but hot enough to burn! Surprised into hiding in a men's room stall at work, Angie Peterson, owner of the Dunk and Run Coffee Shoppe, overhears two men talking about killing someone named Alastair Honeybun. Picturing a frail, helpless old Englishman, Angie rushes to warn him. There’s only one, small problem, Alastair Honeybun is six foot two inches of yummy man, who's perfectly capable of taking care of himself. But when the thugs show up while Angie's still there, they soon figure out they'll need to take care of each other."
},
{
"title": "Must Love Ghosts: Coffee and Ghosts 1",
"link": "https://play.google.com/store/books/details/Charity_Tahmaseb_Must_Love_Ghosts?id=vdJEDwAAQBAJ",
"product_id": "vdJEDwAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=vdJEDwAAQBAJ",
"rating": 4.6,
"author": "Charity Tahmaseb",
"extension": {
"name": "Book 1"
},
"category": "Romance",
"price": "Free",
"extracted_price": 0,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/vdJEDwAAQBAJ?fife=w256-h256",
"description": "Come for the coffee, stay for the supernatural adventure. There's more than one way to catch a ghost, and it's never been this fun!Katy and her grandmother have always used coffee to catch ghosts. It pays the bills and keeps them in high-end beans. But after her grandmother dies and a rival ghost hunter moves to town, Katy fears things will never be the same.She's right.From a beguiling and charismatic ghost whisperer to her new partner's ghost swallowing brother and even a (short) stint behind bars, Katy navigates her new reality, uncertain her skills are equal to the tasks at hand. But are these things mere distractions--or do they hide something darker, far more sinister, something that has a long-held vendetta against Katy?To survive, Katy must uncover an ancient secret. She must brew her very best Kona blend. She will need to rely on unexpected and unpredictable allies.To survive, she will need to trust what's in her heart.Coffee & Ghosts is a cozy paranormal mystery/romance serial told over five episodes. This series bundle contains all five episodes.Episode 1: Ghost in the Coffee MachineEpisode 2: Giving Up the GhostsEpisode 3: The Ghost WhispererEpisode 4: Gone GhostEpisode 5: Must Love Ghosts"
},
{
"title": "Coffee and Calicos: A Free Light Paranormal Culinary Cozy Mystery",
"link": "https://play.google.com/store/books/details/Rosie_Pease_Coffee_and_Calicos?id=z6B1EAAAQBAJ",
"product_id": "z6B1EAAAQBAJ",
"serpapi_link": "https://serpapi.com/search.json?engine=google_play_product&hl=en&gl=us&store=books&product_id=z6B1EAAAQBAJ",
"rating": 4.4,
"author": "Rosie Pease",
"extension": {
"name": "Book 1"
},
"category": "Romance",
"original_price": "$0.99",
"extracted_original_price": 0.99,
"price": "Free",
"extracted_price": 0,
"thumbnail": "https://books.google.com/books/publisher/content/images/frontcover/z6B1EAAAQBAJ?fife=w256-h256",
"description": "It better not be another ghost…After moving to escape someone no one else could see, I finally got my own apartment. Ghosts have followed me around since childhood, but between unpacking and culinary classes, I don’t have time to deal with wayward spirits.Mom and Gram say they’ve warded my new place against ghosts, whatever that means, but soon, things begin to fall over, move around, and roll across the floor.I may not be as alone as I had hoped. Will an uninvited roommate chase me out before I can settle in? Or will I be forced to live with the dead once again?...Keywords: cozy animal mystery, cozy cat mysteries, college mystery, humorous mystery, funny mysteries, cozy mystery series, cozy mysteries, animal cozies, humorous cozy mystery, amateur sleuth, women sleuth, funny cozies, clean murder mystery, cozy murder mystery series, whodunnit, cozy murder mystery books, cozy murder mysteries, young paranormal women's fiction, pwf, whimsical women sleuth, mystery with witches, mystery with magicPerfect for readers of Molly Fitz, Angie Fox, Nic Saint, Adele Abbott, Leighann Dobbs, Samantha Silver, Sara Bourgeois, Kathi Daley, Addison Moore, Annabel Chase, Trixie Silvertale, Jane Hinchey, Amanda M. Lee, Erin Johnson, Jenn McKinlay, Steve Higgs, Tonya Kappes, Rita Mae Brown, Christine Pope, Amy Boyles, Cindy Stark, Christine Zane Thomas, Silver Nord, Lia Davis, Elle Adams, and Joanne Fluke."
},
...
],
],
}
}