Google Image Scraper API
API Endpoint Specifications
- Endpoint Path: /api/1/googleImageSERP
- Type of Data: JSON & 20/minute
- Data Source: Google
- Request Limit: 500 request/month
- Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript
Google Image Scraper API Endpoint Basic Info
API Endpoint Path
required
Google Image SERP Scraper
api/1/google-image-serp-scraper
Call Method
Required
GET
Type of Data Return
JSON
Output structured JSON data on Google image SERP
Available API Arguments & Parameters
token
required
BUYFROMLO API token. Free and subscription APIs are both available: /api/1/google-image-serp-scraper, and accessible to on-site APP on /app/1/google-image-serp-scraper as well
keyword
required
Input a keyword in English
Google Image SERP Scraper
api/1/google-image-serp-scraper
Code Integration and Response
Python Code Sample
import requests
apiendpoint = "https://api.buyfromlo.com/api/1/googleImageSERP?"
## Required Arguments & Parameters ##
token = "your buyfromlo token"
keyword = "a keyword to scrape relevant images"
data="keyword=" + keyword
headers={"Authorization": "Bearer " + token}
## Call the api ##
response = requests.get(apiendpoint + data, headers=headers)
print(response.status_code)
print(response.json())
JSON Response Sample
{
"image url",
}