Frequency Word Ranker API

API Endpoint Specifications

  • Endpoint Path: /api/1/frequentKW-analyzer
  • 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
Frequency Word Ranker API Endpoint Basic Info

API Endpoint Path

required

Content Frequent Keyword Extractor API

api/1/frequentKW-analyzer


Call Method

Required

POST

Type of Data Return

JSON

Output structured JSON data on Frequent Keyword ranker


Available API Arguments & Parameters

token

required

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

originalContent

required

Submit the original English content.


language

Optional

Input the language. Default value is english


Content Frequent Keyword Extractor API

api/1/frequentKW-analyzer


Code Integration and Response

Python Code Sample


import requests

apiendpoint = "https://api.buyfromlo.com/api/1/frequentKW-analyzer"

## Required Arguments & Parameters ##

token = "your buyfromlo token"
originalContent = "original piece of English content"

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

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

JSON Response Sample


{
    "frequent keyword list"
}