Top Search Keywords
Parameters
the website url
your vebapi api key
Example Request
curl -X GET "https://vebapi.com/api/seo/topsearchkeywords?website=codeconia.com" \
-H "X-API-KEY: YOUR_API_KEY" \
-H "Content-Type: application/json"
Response
{
"keywords": [
{
"countryCode": "us",
"keyword": "instapy",
"topRankedUrl": "https://codeconia.com/how-to-create-instagram-bot-with-instapy/",
"rank": 19,
"rankChange": 0,
"searchVolume": 2000,
"rankingDifficulty": 7,
"seoClicks": 20,
"seoClicksChange": 0,
"totalMonthlyClicks": 1800,
"broadCostPerClick": null,
"phraseCostPerClick": null,
"exactCostPerClick": null,
"paidCompetitors": 0,
"rankingHomepages": 2
},
{
"countryCode": "us",
"keyword": "youtube api tutorial javascript",
"topRankedUrl": "https://codeconia.com/how-to-get-youtube-subscriber-views-and-video-counts-using-javascript/",
"rank": 5,
"rankChange": null,
"searchVolume": 420,
"rankingDifficulty": 22,
"seoClicks": 14,
"seoClicksChange": null,
"totalMonthlyClicks": 420,
"broadCostPerClick": null,
"phraseCostPerClick": null,
"exactCostPerClick": null,
"paidCompetitors": 0,
"rankingHomepages": 2
},
{
"countryCode": "us",
"keyword": "ultrasonic sensor arduino code",
"topRankedUrl": "https://codeconia.com/ultrasonic-sensor-with-arduino-tutorial/",
"rank": 25,
"rankChange": 41,
"searchVolume": 1100,
"rankingDifficulty": 15,
"seoClicks": 8,
"seoClicksChange": 5,
"totalMonthlyClicks": 950,
"broadCostPerClick": null,
"phraseCostPerClick": null,
"exactCostPerClick": null,
"paidCompetitors": 0,
"rankingHomepages": 5
}
]
}
🔑 Top Search Keywords API – VebAPI
Retrieve the top-performing organic keywords for any domain, including rankings, traffic volume, SEO difficulty, and click metrics.
📝 Description
The Top Search Keywords API returns a list of keywords for which a domain ranks in search engines. It provides data such as ranking positions, ranking URLs, keyword difficulty, monthly search volume, SEO clicks, and more.
This API is essential for SEO analytics platforms, competitor research tools, content strategy planners, and visibility tracking dashboards.
🎯 Key Benefits
-
📈 Identify top keywords driving traffic to any domain
-
🔍 Analyze keyword rank, search volume, and SEO difficulty
-
🎯 Track changes in rankings and SEO clicks over time
-
🧠 Evaluate keyword ROI with click and competition metrics
-
💼 Useful for competitor analysis, content optimization, and organic growth reporting
🌐 Base URL
https://vebapi.com/api/seo/topsearchkeywords
📥 Input Parameters
Parameter | Type | Required | Description |
---|---|---|---|
website |
string | ✅ Yes | Domain name to analyze (e.g., codeconia.com ) |
Headers Required:
X-API-KEY: YOUR_API_KEY
Content-Type: application/json
📤 Output Response
The response is a JSON object containing a list of keyword entries in the keywords
array.
keywords
(Array of Top Keyword Objects)
Field | Type | Description |
---|---|---|
countryCode |
string | Country where the keyword is ranked (e.g., us ) |
keyword |
string | The search keyword |
topRankedUrl |
string | The URL on your domain that ranks for the keyword |
rank |
int | Current organic rank for the keyword |
rankChange |
int/null | Change in rank compared to the previous period |
searchVolume |
int | Estimated monthly search volume |
rankingDifficulty |
int | Keyword difficulty score (0–100) |
seoClicks |
int | Estimated organic clicks per month |
seoClicksChange |
int/null | Change in SEO clicks compared to previous period |
totalMonthlyClicks |
int | Total potential monthly traffic from that keyword |
broadCostPerClick |
float/null | Estimated CPC for broad match (if available) |
phraseCostPerClick |
float/null | Estimated CPC for phrase match |
exactCostPerClick |
float/null | Estimated CPC for exact match |
paidCompetitors |
int | Number of advertisers bidding for the keyword |
rankingHomepages |
int | Number of homepages ranking for the keyword |