





API:Scraper
API Endpoint Path
required
Bing SERP General Text Content Scraper API
https://www.buyfromlo.com/api/1/bing
Call Method
Required
GET
Type of Data Return
JSON
JSON output structured data for Bing SERP content
Token
required
BUYFROMLO API token. Subscription API is available on www.buyfromlo.com/apis, and accessible to on-site APP on www.buyfromlo.com/app as well
keyword
required
Input a keyword. It supports 25+ languages
page
Optional
Selected pagination of SERP information. The default value is 1st page, which is 1
Bing SERP General Text Content Scraper API
https://www.buyfromlo.com/api/1/bing
Python Code Sample
import requests
apiendpoint = "https://www.buyfromlo.com/api/1/bing"
## Required Arguments & Parameters ##
token = "your buyfromlo token"
keyword = "Input a query"
## Call the api ##
response = requests.get(apiendpoint + "?token=" + token + "&keyword=" + keyword)
print(response.status)
print(response.json())
JSON Response Sample
{
"SERP Title": "",
"SERP Snippet": "",
"SERP Link": "",
"Display URL": "",
"apiVersion": ""
}