Keyword Density Checker API Documentation - VebAPI

Keyword Density Checker

Keyword Density Checker for a website , analyze the websites for rankable keywords

Keyword Density Checker

GET
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
            }
        ]
    }
}

🧠 Keyword Density Checker API – VebAPI

Analyze any webpage for keyword usage, density, and placement to identify rankable terms and optimize on-page SEO performance.


📝 Description

The Keyword Density Checker API scans a webpage’s visible content and returns a detailed breakdown of keyword occurrences, usage percentage, and keyword placement (in title or description). It helps in identifying potential ranking opportunities and over/underused terms for better on-page SEO optimization.

Perfect for SEO tools, content optimization platforms, and AI content analysis systems.


🎯 Key Benefits

  • 🔍 Discover top keywords used on a specific page

  • 📊 See how often keywords appear and their density

  • 🧠 Know if keywords are included in title and meta description

  • 🧰 Great for content SEO audits, keyword mapping, and SERP strategy

  • 🚦 Optimize keyword usage to avoid overstuffing or weak targeting


🌐 Base URL


 

https://vebapi.com/api/seo/keyworddensity


📥 Input Parameters

Parameter Type Required Description
keyword string ✅ Yes The target keyword to analyze in context (e.g., gmax crm)
website string ✅ Yes Full website URL or domain to scan (e.g., codeconia.com)

Headers Required:

  • X-API-KEY: YOUR_API_KEY

  • Content-Type: application/json


📤 Output Response

Returns a JSON object with site metadata and a list of detected keywords and their metrics.

Top-Level Fields

Field Type Description
status string API request status (success or error)
results object Container for analysis results

results Object

Field Type Description
title string Page title (from <title> tag)
description string Meta description (from <meta name="description">)
site string/null Site name (if available)
words array List of analyzed keywords with frequency and density info

Each word Object in words Array

Field Type Description
word string Detected keyword or keyphrase
weight string Keyword weight (internal relevance score)
occurrences int Number of times the keyword appears on the page
percent string Keyword density (as a percentage of total content)
inTitle boolean Whether the keyword is present in the page title
inDescription boolean Whether the keyword is present in the meta description