Google Play Movie Detail
Google Play Movie Detail is used to fetch Google Play movie detail data by product ID.
- Fetch Google Play movie details by product ID
- Support region-based requests
- Return title, rating, pricing, duration, description, and reviews
- Accept multiple product IDs in one request
Use XCrawl to Fetch Google Play Movie 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_movie_detail",
"location": "US",
"product_id_list": ["Bvh6FaOIuLc"]
}'Request parameter notes:
enginemust begoogle_play_movie_detaillocationspecifies the target regionproduct_id_listaccepts one or more Google Play movie IDs
Response Example
{
"result": [
{
"url": "https://play.google.com/store/movies/details?id=exv0KmpCwXE",
"name": "Love and Basketball",
"tomatometer": "85%",
"rating": "4.7",
"price": "$12.99",
"price_rent": "$3.99",
"describe": "From the time they were kids, Monica and Quincy were meant to be together...",
"icon": "https://play-lh.googleusercontent.com/ufUsg3-pvmBzY1FnKjIXj7zc4JZb7empk928XJb0W9hUDu0QEBnWtoxZ2tnQHbG48YL2Xg=w240-h480-rw",
"duration": "124 minutes",
"level": "RatingPG-13"
}
]
}Parameters
Required Parameters
| Parameter | Type | Description |
|---|---|---|
location | string | Specifies the target region. |
product_id_list | array | Accepts one or more Google Play movie 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 movie IDs
Response Fields
| Field | Type | Description |
|---|---|---|
url | string | Movie detail page URL. |
name | string | Movie title. |
tomatometer | string | Tomatometer score. |
rating | string | Overall rating. |
condition_des | string | Category or suitability description. |
price | string | Purchase price. |
price_rent | string | Rental price. |
describe | string | Description. |
icon | string | Cover image URL. |
images | array | Image list. |
video | string | Trailer or video URL. |
updatetime | string | Release or update time. |
duration | string | Duration. |
level | string | Content rating. |
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. |
