Competitor Web Traffic Tracker API

API Endpoint Specifications

  • Endpoint Path: /api/3/webData
  • Type of Data: JSON & 5/minute
  • Data Source: Similarweb, SEMRush, DataSEO
  • Request Limit: 500 request/month
  • Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript
Competitor Web Traffic Tracker API Endpoint Basic Info

API Endpoint Path

required

Website Traffic Tracker API

api/3/webData


Call Method

Required

POST

Type of Data Return

JSON

Output structured JSON data on website traffic


Available API Arguments & Parameters

token

required

BUYFROMLO API token. Paid subscription API is available: /api/3/webData, and accessible to on-site APP on /app/3/webtracker as well

url

required

Input the target website URL



Website Traffic Tracker API

api/3/webData


Code Integration and Response

Python Code Sample


import requests

apiendpoint = "https://api.buyfromlo.com/api/3/webData"

## Required Arguments & Parameters ##

token = "your buyfromlo token"
url = "website domain URL"

data={"url": url}
headers={"Authorization": "Bearer " + token}

## Call the api ##
response = requests.post(apiendpoint, json=data, headers=headers)
print(response.status_code)
print(response.json())
                        

JSON Response Sample


{
    "Website Avg Monthly Traffic": " " (integer),
}