Google Play Book Detail
Google Play Book Detail is used to fetch Google Play book detail data by product ID.
- Fetch Google Play book details by product ID
- Support region-based requests
- Return title, author, rating, page count, description, and reviews
- Accept multiple product IDs in one request
Use XCrawl to Fetch Google Play Book Details
Usage
curl -s -X POST 'https://run.xcrawl.com/v1/data' \
-H 'Authorization: Bearer $XCRAWL_API_KEY'\
-H 'Content-Type: application/json' \
-d '{
"engine": "google_play_book_detail",
"location": "US",
"product_id_list": ["rKTBDwAAQBAJ"]
}'Request parameter notes:
enginemust begoogle_play_book_detaillocationspecifies the target regionproduct_id_listaccepts one or more Google Play book IDs
Response Example
{
"result": [
{
"url": "https://play.google.com/store/books/details?id=102lZa2nM1EC",
"name": "Crazy Love: Overwhelmed by a Relentless God",
"publisher": "Francis Chan",
"rating": "4.7",
"pages": 224,
"price": null,
"describe": "Revised & Updated Edition! God is love...",
"icon": "https://play.google.com/books/content/images/frontcover/102lZa2nM1EC?fife=w240-h345",
"updatetime": "Apr 2013"
}
]
}Parameters
Required Parameters
| Parameter | Type | Description |
|---|---|---|
location | string | Specifies the target region. |
product_id_list | array | Accepts one or more Google Play book IDs. |
Parameter Notes
locationdefaults toUSlocationsupports multiple region values such asUS,HK,CA,GB, andJPproduct_id_listdefaults to an empty array and should contain Google Play book IDs
Response Fields
| Field | Type | Description |
|---|---|---|
url | string | Book detail page URL. |
name | string | Book title. |
publisher | string | Author or publisher name. |
publisher_url | string | Author or publisher page URL. |
rating | string | Overall rating. |
condition_des | string | Category or suitability description. |
pages | string | Page count. |
price | string | Price. |
describe | string | Description. |
icon | string | Cover image URL. |
images | array | Image list. |
video | string | Video URL. |
updatetime | string | Update time. |
tags | array | Tag list. |
rating_detail | array | Rating distribution. |
reviews | array | User review list. |
similar_products | array | Similar content list. |
Image Fields
Each item in images[] typically includes:
| Field | Type | Description |
|---|---|---|
image | string | Image URL. |
Tag Fields
Each item in tags[] typically includes:
| Field | Type | Description |
|---|---|---|
name | string | Tag name. |
link | string | Tag URL. |
Rating Distribution Fields
Each item in rating_detail[] typically includes:
| Field | Type | Description |
|---|---|---|
score | string | Rating score. |
amount | string | Number of ratings for that score. |
Review Fields
Each item in reviews[] typically includes:
| Field | Type | Description |
|---|---|---|
auther | string | Reviewer name. |
auther_link | string | Reviewer avatar or profile URL. |
rating | string | Review rating. |
text | string | Review text. |
createdtime | string | Review date. |
Similar Content Fields
Each item in similar_products[] typically includes:
| Field | Type | Description |
|---|---|---|
name | string | Content name. |
icon | string | Cover image URL. |
publisher | string | Publisher name. |
link | string | Content URL. |
rating | string | Rating. |
price | string | Price. |
