ABCProxy Docs
English
English
  • Overview
  • PROXIES
    • Residential Proxies
      • Introduce
      • Dashboard to Get IP to Use
      • Getting started guide
      • Account security authentication
      • API extraction
      • Basic query
      • Select the country/region
      • Select State
      • Select city
      • Session retention
    • Socks5 Proxies
      • Getting Started
      • Proxy Manager to Get IP to Use
    • Unlimited Residential Proxies
      • Getting started guide
      • Account security authentication
      • API extraction
    • Static Residential Proxies
      • Getting started guide
      • API extraction
      • Account security authentication
    • ISP Proxies
      • Getting started guide
      • Account security authentication
    • Dedicated Datacenter Proxies
      • Getting started guide
      • API extraction
      • Account security authentication
  • Advanced proxy solutions
    • Web Unblocker
      • Get started
      • Making Requests
        • JavaScript rendering
        • Geo-location
        • Session
        • Header
        • Cookie
        • Blocking Resource Loading
    • APM-ABC Proxy Manger
      • How to use
  • SERP API
    • Get started
    • Google
      • Google Search API
      • Google Shopping API
      • Google Local API
      • Google Videos API
      • Google News API
      • Google Flights API
      • Google Product API
      • Google Images API
      • Google Lens Search API
      • Google Play Product API
      • Google Play Game Store API
      • Google Play Book Store API
      • Google Play Movies Store API
      • Google Jobs API
      • Google Scholar Author API
      • Google Scholar API
      • Google Scholar Cite API
      • Google Scholar Profiles API
    • Bing
      • Bing Search API
      • Bing News API
      • Bing Shopping API
      • Bing Images API
      • Bing Videos API
      • Bing Maps API
    • Yahoo
      • Yahoo! Search API
      • Yahoo! Shopping API
      • Yahoo! Images API
      • Yahoo! Videos API
    • DuckDuckGo
      • DuckDuckGo Search API
      • DuckDuckGo News API
      • DuckDuckGo Maps API
    • Ebay
      • Ebay Search API
    • Walmart
      • Walmart Search API
      • Walmart Product Reviews API
      • Walmart Product API
    • Yelp
      • Yelp Reviews API
    • Youtube
      • YouTube Search API
      • YouTube Video API
      • YouTube Video Batch Download API
        • YouTube Batch Download Task Information API
        • YouTube Single Download Job Information API
  • Parametric
    • Google Ads Transparency Center Regions
    • Google GL Parameter: Supported Google Countries
    • Google HL Parameter: Supported Google Languages
    • Google Lens Country Parameter: Supported Google Lens Countries
    • Google Local Services Job Types
    • Google Trends Categories
    • Supported DuckDuckGo Regions
    • Supported Ebay Domains
    • Supported Ebay location options
    • Google Trends Locations
    • Supported Ebay sort options
    • Supported Google Countries via cr parameter
    • Supported Google Domains
    • Supported Google Languages via lr parameter
    • Supported Google Play Apps Categories
    • Supported Google Patents country codes
    • Supported Google Play Games Categories
    • Supported Google Play Books Categories
    • Supported Google Play Movies Categories
    • Supported Google Scholar Courts
    • Supported Yahoo! Countries
    • Supported Yahoo! Domains
    • Supported Yahoo! File formats
    • Supported Yahoo! Languages
    • Supported Yandex Domains
    • Supported Yandex Languages
    • Supported Yelp Domains
    • Supported Yandex Locations
    • Supported Yelp Reviews Languages
    • Walmart Stores Locations
    • Supported Google Travel currency codes
    • Supported Locations API
  • HELP
    • FAQ
      • ABCProxy Software Can Not Log In?
      • Software Tip:“please start the proxy first”
    • Refund Policy
    • Contact Us
  • INTEGRATION AND USAGE
    • Browser Integration Tools
      • Proxy Switchy Omega
      • BP Proxy Switcher
      • Brave Browser
    • Anti-Detection Browser Integration
      • AdsPower
      • BitBrowser
      • Dolphin{anty}
      • Undetectable
      • Incogniton
      • Kameleo
      • Morelogin
      • ClonBrowser
      • Hidemium
      • Helium Scraper
      • VMlogin
      • ixBrower
      • Xlogin
      • Antbrowser
      • Lauth
      • Indigo
      • IDENTORY
      • Gologin
      • MuLogin
    • Use of Enterprise Plan
      • How to use the Enterprise Plan CDKEY?
Powered by GitBook
On this page
  • Api Details
  • Request
  • Serpapi Parameters
  • Response
  • Success 200
  • Error Responses
  1. SERP API
  2. Google

Google Play Movies Store API

Api Details

Endpoint GET https://serpapi.abcproxy.com/search

Description Retrieve comprehensive user profile including basic info, account status and optional permission sets.


Request

HTTP Request

curl -X GET "https://serpapi.abcproxy.com/search" \
  -d "engine=google_play_movies" \
  -d "q=Coffee" \
  -d "no_cache=false" \
  -d "api_key=YOUR_API_KEY"
import requests

params = {
    "engine": "google_play_movies",
    "q": "Coffee",
    "no_cache": "false",
    "api_key": "YOUR_API_KEY"
}
response = requests.get("https://serpapi.abcproxy.com/search", params=params)
print(response.json())
const axios = require('axios');

const params = {
  engine: "google_play_movies",
  q: "Coffee",
  no_cache: "false",
  api_key: "YOUR_API_KEY"
};

axios.get("https://serpapi.abcproxy.com/search", { params })
  .then(response => console.log(response.data));
GET /search?engine=google_play_movies&q=Coffee&no_cache=false&api_key=YOUR_API_KEY HTTP/1.1
Host: serpapi.abcproxy.com
<?php
$client = new \GuzzleHttp\Client();
$response = $client->get('https://serpapi.abcproxy.com/search', [
    'query' => [
        'engine' => 'google_play_movies',
        'q' => 'Coffee',
        'no_cache' => 'false',
        'api_key' => 'YOUR_API_KEY'
    ]
]);
echo $response->getBody();
package main

import (
    "net/http"
    "io/ioutil"
    "log"
)

func main() {
    client := &http.Client{}
    req, _ := http.NewRequest("GET", "https://serpapi.abcproxy.com/search", nil)
    
    q := req.URL.Query()
    q.Add("engine", "google_play_movies")
    q.Add("q", "Coffee")
    q.Add("no_cache", "false")
    q.Add("api_key", "YOUR_API_KEY")
    req.URL.RawQuery = q.Encode()

    resp, _ := client.Do(req)
    body, _ := ioutil.ReadAll(resp.Body)
    log.Println(string(body))
}
using System;
using System.Net.Http;

class Program
{
    static async Task Main()
    {
        var client = new HttpClient();
        var query = System.Web.HttpUtility.ParseQueryString(string.Empty);
        query["engine"] = "google_play_movies";
        query["q"] = "Coffee";
        query["no_cache"] = "false";
        query["api_key"] = "YOUR_API_KEY";
        
        var response = await client.GetAsync(
            $"https://serpapi.abcproxy.com/search?{query}"
        );
        Console.WriteLine(await response.Content.ReadAsStringAsync());
    }
}
import java.net.*;
import java.io.*;

public class Main {
    public static void main(String[] args) throws Exception {
        String url = "https://serpapi.abcproxy.com/search" +
            "?engine=google_play_movies" +
            "&q=Coffee" +
            "&no_cache=false" +
            "&api_key=YOUR_API_KEY";
        
        HttpURLConnection conn = (HttpURLConnection) new URL(url).openConnection();
        conn.setRequestMethod("GET");
        
        BufferedReader in = new BufferedReader(
            new InputStreamReader(conn.getInputStream())
        );
        String response = in.lines().collect(Collectors.joining());
        System.out.println(response);
    }
}

API Parameters

Search Query

Name
Type
Required
Description
Example

q

string

No

Parameter defines the query you want to search in Google Play Apps Store.

123

Localization

Name
Type
Required
Description
Example

gl

string

No

us

hl

string

No

en

Google Play Categories

Name
Type
Required
Description
Example

movies_category

string

No

1

Advanced Google Play Parameters

Name
Type
Required
Description
Example

age

string

No

Parameter defines age subcategory. age works, and should only be used with apps_category=FAMILY(Kids Apps) It can be set to: AGE_RANGE1 - Ages up to 5 AGE_RANGE2 - Ages 6-8 AGE_RANGE3 - Ages 9-12 The default value for age is: - All ages up to 12

-

Pagination

Name
Type
Required
Description
Example

next_page_token

string

No

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

string

No

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

string

No

Parameter is used for showing top charts. It can return up 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 Apps 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

-

see_more_token

string

No

Parameter defines the see more token used for retrieving the pagination results from individual sections It is usually found in next page results. It shouldn't be used with the section_page_token, next_page_token, and chart, parameters

Serpapi Parameters

Name
Type
Required
Description
Example

engine

string

Yes

Set parameter to google_play_movies to use the Google Play Movies API engine.

google_play_movies

no_cache

boolean

No

Parameter will force SerpApi to fetch the Google Play Movies 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.

trueorfalse

api_key

string

Yes

Parameter defines the SerpApi private key to use.

-


Response

Success 200

Response Body

{
  "search_metadata": {
    "raw_html_file": "https://webserp.abcproxy.com/files/1c9399bedf6e83cd/5da48a1d-e067-4b4f-8f66-5354283ed34c.html",
    "xray_html_file": "https://webserp.abcproxy.com/files/1c9399bedf6e83cd/5da48a1d-e067-4b4f-8f66-5354283ed34c.xray",
    "total_time_taken": "5.4297",
    "id": "5da48a1d-e067-4b4f-8f66-5354283ed34c",
    "json_endpoint": "https://webserp.abcproxy.com/files/1c9399bedf6e83cd/5da48a1d-e067-4b4f-8f66-5354283ed34c.json",
    "created_at": "2025-04-02 16:24:21",
    "google_news_url": "https://play.google.com/store/search?c=movies&q=coffee"
  },
  "search_parameters": {
    "engine": "google_play_movies",
    "no_cache": true,
    "api_key": "YOUR_API_KEY",
    "q": "coffee"
  },
  "organic_results": [
    {
      "title": "film"
      "items": [
        {
          "link": "/store/movies/details/Coffee?id=7FA4A772F72C0C5BMV",
          "thumbnail": "https://play-lh.googleusercontent.com/proxy/YHpA3tGgWX2rNDntay6y8SnknG2ms17u1pQXADO4RTp8ZC_ND1nHntfri7ef1NgdpamM660Hspcv32rpD8h2aj5rynNmjDcfWhUx4fHo2wGDP-nJQcMNFn3KiiyHjkpKzR4sIs6OWIzei6nnvtogbGO1ffJ-cPldaiVYVA=s256-rw",
          "title": "Coffee"
        },
        {
          "rating": "4.1",
          "price": "US$2.99",
          "thumbnail": "https://play-lh.googleusercontent.com/KKtvOxoFEi-kwkAK9V9PRvAHnf-7qG76QXU7FnJHMvoIw58_x7qC7YqoEmuhUqoVs1uI2A=s256-rw",
          "title": "Hot Coffee",
          "link": "/store/movies/details/Hot_Coffee?id=KmEYWCg0J7Q"
        },
        {
          "title": "Full Metal Village",
          "link": "/store/movies/details/Full_Metal_Village?id=45jBUkhStqg",
          "rating": "2.5",
          "price": "US$2.99",
          "thumbnail": "https://play-lh.googleusercontent.com/x0r4QB_2di0MokUGaWC7r0MzhNFabV-_wsl76wMtiWTwDF4T08F1dnV176KDPwfKfM_v=s256-rw"
        },
          "..."
      ],
    },
    {
      "title": "television program",
      "items": [
        {
          "title": "Inside the Food Factory",
          "link": "/store/tv/show/Inside_the_Food_Factory?id=QzXKJNpcpwg.P",
          "thumbnail": "https://play-lh.googleusercontent.com/8EzyaB0cxfIJJb_fGj6p-TdAV1x2X_TA4sJhNxhrerE_ECiydgC74a4NkWPDSHUypRvNqk6Gr8P6EDQWw9U=s256-rw"
        },
        {
          "title": "Coffee Cart Ban",
          "link": "/store/tv/show?id=-sRNnDpRvBo&cdid=tvseason-LsNKoyHpArX4uxpaBXyE6w&gdid=tvepisode-OjTIvdOj6dQ",
          "price": "0.99",
          "thumbnail": "https://play-lh.googleusercontent.com/Dbcg27_EdqwImCvFfZUDDYXAEM4ZwGwWZSMlf5NY0J4t6PkEki5SXIYaP83-Ymaaqqnz=s256-rw"
        },
        {
          "title": "Planet Bears / Coffee Cave",
          "link": "/store/tv/show?id=8qBdpu87wlc&cdid=tvseason-UVWSsh7S25IZoaEEWBUA9Q&gdid=tvepisode-hsSakym32Cw",
          "price": "0.99",
          "thumbnail": "https://play-lh.googleusercontent.com/2NqyCDMFiskfnnUP0qyXg56pqhSVUhKXfXTODiaaj67ro2LZM5eftdJf0tH9-12WH2JA_nmkQ9NuvIHgB9ko=s256-rw"
        },
        "..."
     ],
   }
}

Response Fields

Field
Type
Description

search_metadata

object

Contains timing and status information

search_parameters

object

Contains query parameters and search context

organic_results

object[]

OrganicResults


Error Responses

Common Errors

HTTP Status
Error Code
Description

200

400

API Key can not be empty

200

401

Param error

200

402

Api key error

200

403

Insufficient Balance

200

404

Deduction failed

200

405

Failed to record usage count

200

406

Unsupported engine

200

407

Network error

200

408

File not found

200

409

Limit param error

200

410

Build url error

200

411

Failed to QueryRecentRecord

200

412

Failed to find json

200

413

Get html error

200

414

HTML is empty

200

429

Too many request

Error Example

{
  "code": 400,
  "message": "API Key can not be empty"
}

PreviousGoogle Play Book Store APINextGoogle Jobs API

Last updated 21 days ago

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: . Afterwards, head to the page for a two-letter country code.

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 for a full list of supported Google languages.

Parameter defines the movies store category. Head to the Google Play store for a full list of supported Google Play Books store categories.

Google Play Countries
Google countries page
Google languages page
Movies Categories