SEO Content Traffic Predictor API

API Endpoint Specifications

  • Endpoint Path: /api/1/content-traffic-estimator
  • Type of Data: JSON & 20/minute
  • Data Source: BUYFROMLO
  • Request Limit: 500 request/month
  • Script & Integration: Code to integrate with cURL, JS, Python, Ruby, Php, Node.js, Java, .NET, Rust, Go, Typescript
SEO Content Traffic Predictor API Endpoint Basic Info

API Endpoint Path

required

SEO Content Traffic Predictor

api/1/content-traffic-estimator


Call Method

Required

POST

Type of Data Return

JSON

Output structured JSON data on SEO content traffic estimate


Available API Arguments & Parameters

token

required

BUYFROMLO API token. Paid subscription API is available: /api/1/content-traffic-estimator, and accessible to on-site APP on /app/1/content-traffic-estimator as well

impression

required

Enter est. impression value of a keyword from search engine

categoryScore

required

Select a content category number. Current available options: 1 - Smart Home, 2 - Smart Device, 3 - Finance, 4 - Python, 5 - AI News, 6 - Tech News, 7 - Digital Marketing, 8 - EV, 9 - Web3, 10 - Prompt Engineering, 11 - React JS, 12 - NFT, 13 - Data Science, 14 - AI Tools, 15 - Smart Health


positionValue

Optional

Enter a SERP ranking position value


SEO Content Traffic Predictor

api/1/content-traffic-estimator


Code Integration and Response

Python Code Sample


import requests

apiendpoint = "https://api.buyfromlo.com/api/1/content-traffic-estimator"

## Required Arguments & Parameters ##

token = "your buyfromlo token"
impression1 = "an impression est. value"
categoryScore = "a category score"

## Optional ##
positionValue = "ranking position value"

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

## Call the api ##
response = requests.post(
    apiendpoint, 
    json={
            "impression1":impression1,
            "categoryScore":categoryScore,
            "positionValue":positionValue
        }, headers=headers
    )
print(response.status_code)
print(response.json())
                        

JSON Response Sample


{
    "Estimate Traffic",
    "Category Score"
}