Keyword Density Checker
Keyword Density Checker for a website , analyze the websites for rankable keywords
GET /seo/keyworddensity
Parameters
keyword
Required
query
string
targeted keyword
website
Required
query
string
enter website url without https:// or http
X-API-KEY
Required
header
string
your vebapi api key
Example Request
curl -X GET "https://vebapi.com/api/seo/keyworddensity?keyword=gmax crm&website=codeconia.com" \
-H "X-API-KEY: YOUR_API_KEY" \
-H "Content-Type: application/json"
Response
{
"status": "success",
"results": {
"title": "codeconia -learn programming",
"description": "programmer guide",
"site": null,
"words": [
{
"word": "smtp",
"weight": "0.2",
"occurrences": 2,
"percent": "1.1%",
"inTitle": false,
"inDescription": false
},
{
"word": "data laravel",
"weight": "0.2",
"occurrences": 2,
"percent": "1.1%",
"inTitle": false,
"inDescription": false
},
{
"word": "json data",
"weight": "0.2",
"occurrences": 2,
"percent": "1.1%",
"inTitle": false,
"inDescription": false
},
{
"word": "display json data",
"weight": "0.2",
"occurrences": 2,
"percent": "1.1%",
"inTitle": false,
"inDescription": false
}
]
}
}