





API:Marketing
API Endpoint Path
required
Linkedin User Profile Scraper API
https://www.buyfromlo.com/api/1/linkedinProfileScraper
Call Method
Required
GET
Type of Data Return
JSON
JSON output structured data for Linkedin user profile data
Token
required
BUYFROMLO API token. Free and subscription APIs are both available on www.buyfromlo.com/apis, and accessible to on-site APP on www.buyfromlo.com/app as well
companyname
required
Input the target company name in English
title
required
Enter the specific position title
Linkedin User Profile Scraper API
https://www.buyfromlo.com/api/1/linkedinProfileScraper
Python Code Sample
import requests
apiendpoint = "https://www.buyfromlo.com/api/1/linkedinProfileScraper"
## Required Arguments & Parameters ##
token = "your buyfromlo token"
companyname = "a company name"
title="person job title"
## Call the api ##
response = requests.get(apiendpoint + "?token=" + token + "&companyname=" + companyname + "&title=" + title)
print(response.status)
print(response.json())
JSON Response Sample
{
'Prospect Profile': '',
'Module': ''
}