Yahoo Japan SERP Scraper API
API Endpoint Specifications
- Endpoint Path: /api/1/yahooJP
- Type of Data: JSON & 20/minute
- Data Source: Yahoo Japan
- Request Limit: 500 request/month
- Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript
Yahoo Japan SERP Scraper API Endpoint Basic Info
API Endpoint Path
required
Yahoo Japan Search Result Information Scraper API
api/1/yahooJP
Call Method
Required
GET
Type of Data Return
JSON
Output structured JSON data on Yahoo Japan SERP content
Available API Arguments & Parameters
token
required
BUYFROMLO API token. Free and paid subscription APIs are both available: /api/1/yahooJP, and accessible to on-site APP on /app/1/yahoojpserp as well
keyword
required
Input a keyword
page
Optional
Selected pagination of SERP information. The default value is 1st page, which is 1
language
Optional
Input a keyword. It supports 4 languages which are Japanese, English, Simplified Chinese and Traditional Chinese
Yahoo Japan Search Result Information Scraper API
api/1/yahooJP
Code Integration and Response
Python Code Sample
import requests
apiendpoint = "https://api.buyfromlo.com/api/1/yahooJP?"
## Required Arguments & Parameters ##
token = "your buyfromlo token"
keyword = "Input a query"
## optional arguments and parameters ##
page="total amount of serp results, max. 5 pages"
data="keyword=" + keyword + "&page=" + page
headers={"Authorization": "Bearer " + token}
## Call the api ##
response = requests.get(apiendpoint + data, headers=headers)
print(response.status_code)
print(response.json())
JSON Response Sample
{
"Keyword": " " (string),
"SERP Title": " " (string),
"SERP Snippet": " " (string),
"SERP Link": " " (string),
"serp_machine_learning_model": " " (string)
}