Keyword Density

FREEMIUM
Par seoprof | Mise à jour a month ago | Text Analysis
Health Check

N/A

Abonnés : 2
Ressources :
Conditions d'utilisation
Créateur d'API :
Rapid account: Seoprof
seoprof
seoprof
Connectez-vous pour évaluer l'API
Note : 5 - Votes : 1

LISEZ-MOI

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…