Google Play TV Detail
Google Play TV Detail is used to fetch Google Play TV show detail data by product ID.
- Fetch Google Play TV show details by product ID
- Support region-based requests
- Return show title, pricing, season info, episode list, and reviews
- Accept multiple product IDs in one request
Use XCrawl to Fetch Google Play TV 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_tv_detail",
"location": "US",
"product_id_list": ["mFDRhdUD84Y"]
}'Request parameter notes:
enginemust begoogle_play_tv_detaillocationspecifies the target regionproduct_id_listaccepts one or more Google Play TV show IDs
Response Example
{
"result": [
{
"url": "https://play.google.com/store/tv/show/details?id=TmD0oo9OcEw.P",
"name": "The Last of Us",
"rating": "5.0",
"price": "$19.99",
"describe": "After a global pandemic destroys civilization...",
"icon": "https://play-lh.googleusercontent.com/nWceix2ioKZjhZEbIS-yB9tE5-svipgr6bE_DKIm7xwDCWUWPWa0g6PHnHWQ6zPlwIsnxdp2f5-GwTb0UcI=w240-h480-rw",
"season": "Season 2 (with ASL / American Sign Language) episodes (7)",
"episodes": [
{
"pos": 0,
"title": "1 Future Days",
"price": "$2.99"
}
]
}
]
}Parameters
Required Parameters
| Parameter | Type | Description |
|---|---|---|
location | string | Specifies the target region. |
product_id_list | array | Accepts one or more Google Play TV show 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 TV show IDs
Response Fields
| Field | Type | Description |
|---|---|---|
url | string | TV show detail page URL. |
name | string | TV show title. |
rating | string | Overall rating. |
condition_des | string | Category or suitability description. |
price | string | Price. |
describe | string | Description. |
icon | string | Cover image URL. |
images | array | Image list. |
video | string | Video URL. |
updatetime | string | Update time. |
level | string | Content rating. |
season | string | Season information. |
episodes | array | Episode list. |
tags | array | Tag list. |
rating_detail | array | Rating distribution. |
reviews | array | User review list. |
similar_products | array | Similar content list. |
Episode Fields
Each item in episodes[] typically includes:
| Field | Type | Description |
|---|---|---|
pos | string | Episode position. |
title | string | Episode title. |
des | string | Episode description. |
updatetime | string | Episode update time. |
price | string | Episode price. |
image | string | Episode cover 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. |
