Influencer Profile Scraper API

API Endpoint Specifications

  • Endpoint Path: /api/1/influencer
  • Type of Data: JSON & 20/minute
  • Data Source: Youtube, TikTok, Discord, Facebook, Instagram, Pinterest, Twitter
  • Request Limit: 500 request/month
  • Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript
Influencer Profile Scraper API Endpoint Basic Info

API Endpoint Path

required

Social Influencers & KOLs Profile Scraper API

api/1/influencer


Call Method

Required

GET

Type of Data Return

JSON

Output structured JSON data on Influencer profile


Available API Arguments & Parameters

token

required

BUYFROMLO API token. Free and paid subscription APIs are both available: /api/1/influencer, and accessible to on-site APP on Onsite Influencer Search as well

category

required

Input a category of influencer. Here are the options: Consumer Electronics, EV & Automotive, Crytocurrency, Game, Cookware & Food, Alcohol & CBD, Travel Hospitality, Lifestyle


source

Optional

Input a full name of original country of the influencer. The default is United States

subscriber

Optional

Enter the range of influencer followers. The default is 100000

name

Optional

Input Youtube channel name

page

Optional

Selected pagination of SERP information. Each pagination returns 100 influencer profile. The default value is 1st page, which is 1


Social Influencers & KOLs Profile Scraper API

api/1/influencer


Code Integration and Response

Python Code Sample


import requests

apiendpoint = "https://api.buyfromlo.com/api/1/influencer?"

## Required Arguments & Parameters ##
token = "BFL token"
category = "Input a category name"
source = "Select a target country or market"
subscriber = "Enter target profle of follower amount"
page = "Input a page pagination"

data="category=" + category + "&source=" + source + "&subscriber=" + subscriber + "&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


{
    "Category":" " (string),
    "Name":" " (string),
    "Youtube_Followers":" " (integer),
    "Country": " " (string),
    "Thumbnail_url":" " (string),
    "Twitter_Follower": " " (integer),
    "IG_Followers":" " (integer),
    "TikTok_Followers":" " (integer),
    "Emails": " " (string),
    "Twitter_Profile": " " (string),
    "Instagram_Profile": " " (string),
    "TikTok":" " (string),
    "Pinterest":" " (string),
    "Discord":" " (string),
    "Telegram":" " (string),
    "CountryFinal":" " (string),
    "Web":" " (string)
}