Keyword Density

FREEMIUM
By seoprof | Updated hace 17 días | Text Analysis
Health Check

N/A

Followers: 2
Resources:
Terms of use
API Creator:
Rapid account: Seoprof
seoprof
seoprof
Log In to Rate API
Rating: 5 - Votes: 1

README

Perfect for SEO or Machine learning jobs.

Just send POST request to our endpoints containing a text to immediately discover a list of words with their keyword density.

ENDPOINTS for POST requests are:

  1. /density/ to get keyword density (percentage)
  2. /occurence/ to get number of occurences

REQUEST:

Send POST request containing a variable named ‘text’ with up to 50,000 characters

RESPONSE:

The response is in JSON format and it shows various
{
“status”: “ok”,
“text_words”: “18”,
“unique_keywords”: “15”,
“density”: [
{
“word_1”: “17”,
“word_2”: “17”,
}
]
}

“status”: ok | We only accept POST requests! | Too many words. Max 50,000 characters!
“text_words”: number of words of your submitted text
"unique_keywords": number of unique words found by our script.
“density”: [
{
“first word”: “density value”,
etc…