Google Play Audiobook Detail
Google Play Audiobook Detail is used to fetch Google Play audiobook detail data by product ID.
- Fetch Google Play audiobook details by product ID
- Support region-based requests
- Return title, author, rating, duration, description, and reviews
- Accept multiple product IDs in one request
Use XCrawl to Fetch Google Play Audiobook 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_audiobook_detail",
"location": "US",
"product_id_list": ["AQAAAIDFa0zrmM"]
}'Request parameter notes:
enginemust begoogle_play_audiobook_detaillocationspecifies the target regionproduct_id_listaccepts one or more Google Play audiobook IDs
Response Example
{
"result": [
{
"url": "https://play.google.com/store/audiobooks/details?id=AQAAAIDFa0zrmM",
"name": "The 5 Love Languages: The Secret to Love that Lasts",
"publisher": "Gary Chapman",
"rating": "4.8",
"duration": "4 hr 48 min",
"price": "$24.95",
"describe": "Simple ideas, lasting love...",
"icon": "https://play-lh.googleusercontent.com/rVAU48bKHIXhwQn05OLHzBRqzZiZHsVLtLusxvTUP7gO1bJ7WhyhAnYPi3JNE0NEokhsVupmRhCb=w240-h345-rw",
"updatetime": "Feb 2005"
}
]
}Parameters
Required Parameters
| Parameter | Type | Description |
|---|---|---|
location | string | Specifies the target region. |
product_id_list | array | Accepts one or more Google Play audiobook 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 audiobook IDs
Response Fields
| Field | Type | Description |
|---|---|---|
url | string | Audiobook detail page URL. |
name | string | Audiobook 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. |
duration | string | Duration. |
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. |
